diff --git a/Documentation.html b/Documentation.html
index a49ddc2a34..8f7e66f871 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -1086,9 +1086,9 @@ ALTER TABLE `pma_column_comments`
Since release 3.5.0 phpMyAdmin can be configured to remember several things
- (table sorting
+ (sorted column
$cfg['RememberSorting']
- , etc.) for browsing tables.
+ , column order, and column visibility from a database table) for browsing tables.
Without configuring the storage, these features still can be used,
but the values will disappear after you logout.
+
+ When tables are dropped or renamed, table_uiprefs may contain invalid
+ data (referring to tables which no longer exist).
+ We only keep this number of newest rows in table_uiprefs and automatically delete older rows.
+
$cfg['Servers'][$i]['verbose_check'] boolean
Because release 2.5.0 introduced the new MIME-transformation support, the
@@ -1636,7 +1645,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE
$cfg['ShowAll'] boolean
Defines whether a user should be displayed a
- "show all (records)" button in browse mode or not.
+ "show all (rows)" button in browse mode or not.
$cfg['MaxRows'] integer
Number of rows displayed when browsing a result set. If the result set
@@ -2079,11 +2088,9 @@ $cfg['TrustedProxies'] =
The name of the directory where temporary files can be stored.
phpMyAdmin uses a quick method to get the row count, and this method
only returns an approximate count in the case of InnoDB tables. See
@@ -5022,8 +5029,8 @@ Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai".
foreign key
- - a field or group of fields in a database record that point to a key
- field or group of fields forming a key of another database record in some
+ - a column or group of columns in a database row that point to a key
+ column or group of columns forming a key of another database row in some
(usually different) table.
Row (record, tuple)
- represents a single, implicitly structured data item in a table.
Server
- a computer system that provides services to other computing
diff --git a/build.xml b/build.xml
index 9beb3aa0d8..5365747755 100644
--- a/build.xml
+++ b/build.xml
@@ -38,7 +38,7 @@
@@ -48,7 +48,6 @@
@@ -60,17 +59,16 @@
-
+ 0) {
- $.extend(post_params, { col_visib: g.colVisib.toString() });
- }
- $.post('sql.php', post_params);
},
/**
@@ -1500,6 +1509,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
g.cellEditHint = PMA_messages['strCellEditHint'];
g.saveCellWarning = PMA_messages['strSaveCellWarning'];
g.alertNonUnique = PMA_messages['strAlertNonUnique'];
+ g.gotoLinkText = PMA_messages['strGoToLink'];
// initialize cell editing configuration
g.saveCellsAtOnce = $('#save_cells_at_once').val();
@@ -1560,6 +1570,9 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
// attach to global div
$(g.gDiv).append(g.cEdit);
+
+ // add hint for grid editing feature when hovering "Edit" link in each table row
+ PMA_createqTip($(g.t).find('.edit_row_anchor a'), PMA_messages['strGridEditFeatureHint']);
}
}
diff --git a/js/messages.php b/js/messages.php
index 447fcc1758..b942a182f0 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -90,6 +90,13 @@ $js_messages['strChartIssuedQueriesTitle'] = __('Questions (executed statements
$js_messages['strChartQueryPie'] = __('Query statistics');
/* server status monitor */
+$js_messages['strIncompatibleMonitorConfig'] = __('Local monitor configuration icompatible');
+$js_messages['strIncompatibleMonitorConfigDescription'] = __('The chart arrangement configuration in your browsers local storage is not compatible anymore to the newer version of the monitor dialog. It is very likely that your current configuration will not work anymore. Please reset your configuration to default in the Settings menu.');
+
+$js_messages['strQueryCacheEfficiency'] = __('Query cache efficiency');
+$js_messages['strQueryCacheUsage'] = __('Query cache usage');
+$js_messages['strQueryCacheUsed'] = __('Query cache used');
+
$js_messages['strSystemCPUUsage'] = __('System CPU Usage');
$js_messages['strSystemMemory'] = __('System memory');
$js_messages['strSystemSwap'] = __('System swap');
@@ -282,6 +289,8 @@ $js_messages['strColMarkHint'] = __('Click to mark/unmark');
$js_messages['strColVisibHint'] = __('Click the drop-down arrow to toggle column\'s visibility');
$js_messages['strShowAllCol'] = __('Show all');
$js_messages['strAlertNonUnique'] = __('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.');
+$js_messages['strGridEditFeatureHint'] = __('You can also edit most columns by clicking directly on their content.');
+$js_messages['strGoToLink'] = __('Go to link');
/* password generation */
$js_messages['strGeneratePassword'] = __('Generate password');
diff --git a/js/server_status.js b/js/server_status.js
index c798bd33c9..870f9b1205 100644
--- a/js/server_status.js
+++ b/js/server_status.js
@@ -662,17 +662,19 @@ $(function() {
return false;
});
+});
- function serverResponseError() {
- var btns = {};
- btns[PMA_messages['strReloadPage']] = function() {
- window.location.reload();
- };
- $('#emptyDialog').attr('title', PMA_messages['strRefreshFailed']);
- $('#emptyDialog').html(
- ' ' +
- PMA_messages['strInvalidResponseExplanation']
- );
- $('#emptyDialog').dialog({ buttons: btns });
- }
-});
\ No newline at end of file
+
+// 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').attr('title', PMA_messages['strRefreshFailed']);
+ $('#emptyDialog').html(
+ ' ' +
+ PMA_messages['strInvalidResponseExplanation']
+ );
+ $('#emptyDialog').dialog({ buttons: btns });
+}
diff --git a/js/server_status_monitor.js b/js/server_status_monitor.js
index cb01ca7934..f8a179d9f7 100644
--- a/js/server_status_monitor.js
+++ b/js/server_status_monitor.js
@@ -16,6 +16,11 @@ $(function() {
// Holds about to 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
+ var monitorProtocolVersion = '1.0';
// Runtime parameter of the monitor, is being fully set in initGrid()
var runtime = {
@@ -51,103 +56,158 @@ $(function() {
// Allows drag and drop rearrange and print/edit icons on charts
var editMode = false;
-
+
+ /* List of preconfigured charts that the user may select */
var presetCharts = {
- 'cpu-WINNT': {
- title: PMA_messages['strSystemCPUUsage'],
- nodes: [{ dataType: 'cpu', name: PMA_messages['strAverageLoad'], dataPoint: 'loadavg', unit: '%'}]
+ // Query cache efficiency
+ 'qce': {
+ title: PMA_messages['strQueryCacheEfficiency'],
+ nodes: [ {
+ name: PMA_messages['strQueryCacheEfficiency'],
+ dataPoints: [{type: 'statusvar', name: 'Qcache_hits'}, {type: 'statusvar', name: 'Com_select'}],
+ unit: '%',
+ transformFn: 'qce'
+ } ]
},
- 'memory-WINNT': {
- title: PMA_messages['strSystemMemory'],
- nodes: [
- { dataType: 'memory', name: PMA_messages['strTotalMemory'], dataPoint: 'MemTotal', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strUsedMemory'], dataPoint: 'MemUsed', valueDivisor: 1024, unit: PMA_messages['strMiB'] }
- ]
- },
- 'swap-WINNT': {
- title: PMA_messages['strSystemSwap'],
- nodes: [
- { dataType: 'memory', name: PMA_messages['strTotalSwap'], dataPoint: 'SwapTotal', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strUsedSwap'], dataPoint: 'SwapUsed', valueDivisor: 1024, unit: PMA_messages['strMiB'] }
- ]
- },
- 'cpu-Linux': {
- title: PMA_messages['strSystemCPUUsage'],
- nodes: [
- { dataType: 'cpu',
- name: PMA_messages['strAverageLoad'],
- unit: '%',
- transformFn: 'cpu-linux'
- }
- ]
- },
- 'memory-Linux': {
- title: PMA_messages['strSystemMemory'],
- nodes: [
- { dataType: 'memory', name: PMA_messages['strUsedMemory'], dataPoint: 'MemUsed', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strCachedMemory'], dataPoint: 'Cached', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strBufferedMemory'], dataPoint: 'Buffers', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strFreeMemory'], dataPoint: 'MemFree', valueDivisor: 1024, unit: PMA_messages['strMiB'] }
- ],
- settings: {
- chart: {
- type: 'area',
- animation: false
- },
- plotOptions: {
- area: {
- stacking: 'percent'
- }
- }
- }
- },
- 'swap-Linux': {
- title: PMA_messages['strSystemSwap'],
- nodes: [
- { dataType: 'memory', name: PMA_messages['strTotalSwap'], dataPoint: 'SwapUsed', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strCachedSwap'], dataPoint: 'SwapCached', valueDivisor: 1024, unit: PMA_messages['strMiB'] },
- { dataType: 'memory', name: PMA_messages['strFreeSwap'], dataPoint: 'SwapFree', valueDivisor: 1024, unit: PMA_messages['strMiB'] }
- ],
- settings: {
- chart: {
- type: 'area',
- animation: false
- },
- plotOptions: {
- area: {
- stacking: 'percent'
- }
- }
- }
+ // Query cache usage
+ 'qcu': {
+ title: PMA_messages['strQueryCacheUsage'],
+ nodes: [ {
+ name: PMA_messages['strQueryCacheUsed'],
+ dataPoints: [{type: 'statusvar', name: 'Qcache_free_memory'}, {type: 'servervar', name: 'query_cache_size'}],
+ unit: '%',
+ transformFn: 'qcu'
+ } ]
}
};
+
+ /* Add OS specific system info charts to the preset chart list */
+ switch(server_os) {
+ case 'WINNT':
+ $.extend(presetCharts, {
+ 'cpu': {
+ title: PMA_messages['strSystemCPUUsage'],
+ nodes: [ {
+ name: PMA_messages['strAverageLoad'],
+ dataPoints: [{ type: 'cpu', name: 'loadavg'}],
+ unit: '%'
+ } ]
+ },
+
+ 'memory': {
+ title: PMA_messages['strSystemMemory'],
+ nodes: [ {
+ name: PMA_messages['strTotalMemory'],
+ dataPoints: [{ type: 'memory', name: 'MemTotal' }],
+ valueDivisor: 1024,
+ unit: PMA_messages['strMiB']
+ }, {
+ dataType: 'memory',
+ name: PMA_messages['strUsedMemory'],
+ dataPoints: [{ type: 'memory', name: 'MemUsed' }],
+ valueDivisor: 1024,
+ unit: PMA_messages['strMiB']
+ } ]
+ },
+
+ 'swap': {
+ title: PMA_messages['strSystemSwap'],
+ nodes: [ {
+ name: PMA_messages['strTotalSwap'],
+ dataPoints: [{ type: 'memory', name: 'SwapTotal' }],
+ valueDivisor: 1024,
+ unit: PMA_messages['strMiB']
+ }, {
+ name: PMA_messages['strUsedSwap'],
+ dataPoints: [{ type: 'memory', name: 'SwapUsed' }],
+ valueDivisor: 1024,
+ unit: PMA_messages['strMiB']
+ } ]
+ }
+ });
+ break;
+
+ case 'Linux':
+ $.extend(presetCharts, {
+ 'cpu': {
+ title: PMA_messages['strSystemCPUUsage'],
+ nodes: [ {
+ name: PMA_messages['strAverageLoad'],
+ dataPoints: [{ type: 'cpu', name: 'irrelevant' }],
+ unit: '%',
+ transformFn: 'cpu-linux'
+ } ]
+ },
+ 'memory': {
+ title: PMA_messages['strSystemMemory'],
+ nodes: [
+ { name: PMA_messages['strUsedMemory'], dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] },
+ { name: PMA_messages['strCachedMemory'], dataPoints: [{ type: 'memory', name: 'Cached' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] },
+ { name: PMA_messages['strBufferedMemory'], dataPoints: [{ type: 'memory', name: 'Buffers' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] },
+ { name: PMA_messages['strFreeMemory'], dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] }
+ ],
+ settings: {
+ chart: {
+ type: 'area',
+ animation: false
+ },
+ plotOptions: {
+ area: {
+ stacking: 'percent'
+ }
+ }
+ }
+ },
+ 'swap': {
+ title: PMA_messages['strSystemSwap'],
+ nodes: [
+ { name: PMA_messages['strUsedSwap'], dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] },
+ { name: PMA_messages['strCachedSwap'], dataPoints: [{ type: 'memory', name: 'SwapCached' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] },
+ { name: PMA_messages['strFreeSwap'], dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024, unit: PMA_messages['strMiB'] }
+ ],
+ settings: {
+ chart: {
+ type: 'area',
+ animation: false
+ },
+ plotOptions: {
+ area: {
+ stacking: 'percent'
+ }
+ }
+ }
+ }
+ });
+ break;
+ }
- // Default setting
+ // Default setting for the chart grid
defaultChartGrid = {
'c0': { title: PMA_messages['strQuestions'],
- nodes: [{ dataType: 'statusvar', name: PMA_messages['strQuestions'], dataPoint: 'Questions', display: 'differential' }]
+ nodes: [{name: PMA_messages['strQuestions'], dataPoints: [{ type: 'statusvar', name: 'Questions' }], display: 'differential' }]
},
'c1': {
title: PMA_messages['strChartConnectionsTitle'],
- nodes: [ { dataType: 'statusvar', name: PMA_messages['strConnections'], dataPoint: 'Connections', display: 'differential' },
- { dataType: 'proc', name: PMA_messages['strProcesses'], dataPoint: 'processes'} ]
+ nodes: [ { name: PMA_messages['strConnections'], dataPoints: [{ type: 'statusvar', name: 'Connections' }], display: 'differential' },
+ { name: PMA_messages['strProcesses'], dataPoints: [{ type: 'proc', name: 'processes' }] } ]
},
'c2': {
title: PMA_messages['strTraffic'],
nodes: [
- { dataType: 'statusvar', name: PMA_messages['strBytesSent'], dataPoint: 'Bytes_sent', display: 'differential', valueDivisor: 1024, unit: PMA_messages['strKiB'] },
- { dataType: 'statusvar', name: PMA_messages['strBytesReceived'], dataPoint: 'Bytes_received', display: 'differential', valueDivisor: 1024, unit: PMA_messages['strKiB'] }
+ { name: PMA_messages['strBytesSent'], dataPoints: [{ type: 'statusvar', name: 'Bytes_sent' }], display: 'differential', valueDivisor: 1024, unit: PMA_messages['strKiB'] },
+ { name: PMA_messages['strBytesReceived'], dataPoints: [{ type: 'statusvar', name: 'Bytes_received' }], display: 'differential', valueDivisor: 1024, unit: PMA_messages['strKiB'] }
]
}
};
- // Server is localhost => We can add cpu/memory/swap
+ // Server is localhost => We can add cpu/memory/swap to the default chart
if (server_db_isLocal) {
- defaultChartGrid['c3'] = presetCharts['cpu-' + server_os];
- defaultChartGrid['c4'] = presetCharts['memory-' + server_os];
- defaultChartGrid['c5'] = presetCharts['swap-' + server_os];
+ defaultChartGrid['c3'] = presetCharts['cpu'];
+ defaultChartGrid['c4'] = presetCharts['memory'];
+ defaultChartGrid['c5'] = presetCharts['swap'];
}
+ /* Buttons that are on the top right corner of each chart */
var gridbuttons = {
cogButton: {
//enabled: true,
@@ -368,9 +428,11 @@ $(function() {
dlgButtons[PMA_messages['strAddChart']] = function() {
var type = $('input[name="chartType"]:checked').val();
- if (type == 'cpu' || type == 'memory' || type == 'swap') {
- newChart = presetCharts[type + '-' + server_os];
+ 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
+ // 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']);
return;
@@ -395,6 +457,17 @@ $(function() {
$(this).dialog("close");
};
+ var $presetList = $('div#addChartDialog select[name="presetCharts"]');
+ if ($presetList.html().length == 0) {
+ $.each(presetCharts, function(key, value) {
+ $presetList.append('');
+ });
+ $presetList.change(function() {
+ $('input#chartPreset').trigger('click');
+ $('input[name="chartTitle"]').attr('value', presetCharts[$(this).prop('value')].title);
+ });
+ }
+
$('div#addChartDialog').dialog({
width: 'auto',
height: 'auto',
@@ -500,6 +573,7 @@ $(function() {
$('a[href="#clearMonitorConfig"]').click(function() {
window.localStorage.removeItem('monitorCharts');
window.localStorage.removeItem('monitorSettings');
+ window.localStorage.removeItem('monitorVersion');
$(this).hide();
rebuildGrid();
});
@@ -712,8 +786,7 @@ $(function() {
}
var serie = {
- dataType: 'statusvar',
- dataPoint: $('input#variableInput').attr('value'),
+ dataPoints: [{ type: 'statusvar', name: $('input#variableInput').attr('value') }],
name: $('input#variableInput').attr('value'),
display: $('input[name="differentialValue"]').attr('checked') ? 'differential' : ''
};
@@ -733,7 +806,7 @@ $(function() {
var str = serie.display == 'differential' ? ', ' + PMA_messages['strDifferential'] : '';
str += serie.valueDivisor ? (', ' + $.sprintf(PMA_messages['strDividedBy'], serie.valueDivisor)) : '';
- $('#seriesPreview').append('- ' + serie.dataPoint + str + ' ');
+ $('#seriesPreview').append('- ' + serie.name + str + ' ');
newChart.nodes.push(serie);
@@ -769,6 +842,19 @@ $(function() {
}
$('a[href="#clearMonitorConfig"]').toggle(runtime.charts != null);
+
+ if (runtime.charts != null && monitorProtocolVersion != window.localStorage['monitorVersion']) {
+ $('div#emptyDialog').attr('title',PMA_messages['strIncompatibleMonitorConfig']);
+ $('div#emptyDialog').html(PMA_messages['strIncompatibleMonitorConfigDescription']);
+
+ var dlgBtns = {};
+ dlgBtns[PMA_messages['strClose']] = function() { $(this).dialog('close'); };
+
+ $('div#emptyDialog').dialog({
+ width: 400,
+ buttons: dlgBtns
+ });
+ }
}
if (runtime.charts == null) {
@@ -1033,7 +1119,7 @@ $(function() {
var htmlStr = '
Chart title: ';
htmlStr += '
Series:
';
for (var i = 0; i' + chart.nodes[i].dataPoint + ':
';
+ htmlStr += '
' + chart.nodes[i].dataPoints[0].name + ':
';
}
dlgBtns = {};
@@ -1114,10 +1200,8 @@ $(function() {
if (! chartData[key]) {
return;
}
- // Draw all points
+ // Draw all series
for (var j = 0; j < elem.nodes.length; j++) {
- value = chartData[key][j].y;
-
// Update x-axis
if (i == 0 && j == 0) {
if (oldChartData == null) {
@@ -1132,24 +1216,32 @@ $(function() {
elem.chart.xAxis[0].setExtremes(runtime.xmin, runtime.xmax, false);
- // Calculate y value
- if (elem.nodes[j].display == 'differential') {
- if (oldChartData == null || oldChartData[key] == null) {
- continue;
- }
- value -= oldChartData[key][j].y;
- }
-
- if (elem.nodes[j].valueDivisor) {
- value = value / elem.nodes[j].valueDivisor;
- }
-
+ /* Calculate y value */
+
+ // If transform function given, use it
if (elem.nodes[j].transformFn) {
value = chartValueTransform(
elem.nodes[j].transformFn,
chartData[key][j],
- (oldChartData == null ? null : oldChartData[key][j])
+ // Check if first iteration (oldChartData==null), or if newly added chart oldChartData[key]==null
+ (oldChartData == null || oldChartData[key] == null ? null : oldChartData[key][j])
);
+
+ // Otherwise use original value and apply differential and divisor if given,
+ // in this case we have only one data point per series - located at chartData[key][j][0]
+ } else {
+ value = parseFloat(chartData[key][j][0].value);
+
+ if (elem.nodes[j].display == 'differential') {
+ if (oldChartData == null || oldChartData[key] == null) {
+ continue;
+ }
+ value -= oldChartData[key][j][0].value;
+ }
+
+ if (elem.nodes[j].valueDivisor) {
+ value = value / elem.nodes[j].valueDivisor;
+ }
}
// Set y value, if defined
@@ -1177,28 +1269,54 @@ $(function() {
}
/* Function that supplies special value transform functions for chart values */
- function chartValueTransform(name, cur, prev) {
+ function chartValueTransform(name, cur, prev) {
switch(name) {
- case 'cpu-linux':
- if (prev == null) {
- return undefined;
- }
-
- var diff_total = cur.busy + cur.idle - (prev.busy + prev.idle);
- var diff_idle = cur.idle - prev.idle;
- return 100*(diff_total - diff_idle) / diff_total;
+ case 'cpu-linux':
+ if (prev == null) {
+ return undefined;
+ }
+ // cur and prev are datapoint arrays, but containing only 1 element for cpu-linux
+ cur = cur[0], prev = prev[0];
+
+ var diff_total = cur.busy + cur.idle - (prev.busy + prev.idle);
+ var diff_idle = cur.idle - prev.idle;
+ return 100 * (diff_total - diff_idle) / diff_total;
+
+ // Query cache efficiency (%)
+ case 'qce':
+ if (prev == null) {
+ return undefined;
+ }
+ // cur[0].value is Qcache_hits, cur[1].value is Com_select
+ var diffQHits = cur[0].value - prev[0].value;
+ // No NaN please :-)
+ if (cur[1].value - prev[1].value == 0) return 0;
+
+ return diffQHits / (cur[1].value - prev[1].value + diffQHits) * 100;
+
+ // Query cache usage (%)
+ case 'qcu':
+ if (cur[1].value == 0) return 0;
+ // cur[0].value is Qcache_free_memory, cur[1].value is query_cache_size
+ return 100 - cur[0].value / cur[1].value * 100;
+
}
return undefined;
}
- /* Build list of nodes that need to be retrieved from server */
+ /* Build list of nodes that need to be retrieved from server.
+ * It creates something like a stripped down version of the runtime.charts object.
+ */
function buildRequiredDataList() {
runtime.dataList = {};
// Store an own id, because the property name is subject of reordering,
// thus destroying our mapping with runtime.charts <=> runtime.dataList
var chartID = 0;
$.each(runtime.charts, function(key, chart) {
- runtime.dataList[chartID] = chart.nodes;
+ runtime.dataList[chartID] = [];
+ for(var i=0; i < chart.nodes.length; i++) {
+ runtime.dataList[chartID][i] = chart.nodes[i].dataPoints;
+ }
runtime.charts[key].chartID = chartID;
chartID++;
});
@@ -1746,6 +1864,7 @@ $(function() {
if (window.localStorage) {
window.localStorage['monitorCharts'] = $.toJSON(gridCopy);
window.localStorage['monitorSettings'] = $.toJSON(monitorSettings);
+ window.localStorage['monitorVersion'] = monitorProtocolVersion;
}
$('a[href="#clearMonitorConfig"]').show();
diff --git a/libraries/Table.class.php b/libraries/Table.class.php
index 80ab72778a..87fb50a8b2 100644
--- a/libraries/Table.class.php
+++ b/libraries/Table.class.php
@@ -1266,7 +1266,7 @@ class PMA_Table
" REPLACE INTO " . $pma_table .
" VALUES ('" . $username . "', '" . PMA_sqlAddSlashes($this->db_name) . "', '" .
PMA_sqlAddSlashes($this->name) . "', '" .
- PMA_sqlAddSlashes(json_encode($this->uiprefs)) . "')";
+ PMA_sqlAddSlashes(json_encode($this->uiprefs)) . "', NULL)";
$success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']);
@@ -1276,6 +1276,28 @@ class PMA_Table
$message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink'])));
return $message;
}
+
+ // Remove some old rows in table_uiprefs if it exceeds the configured maximum rows
+ $sql_query = 'SELECT COUNT(*) FROM ' . $pma_table;
+ $rows_count = PMA_DBI_fetch_value($sql_query);
+ $max_rows = $GLOBALS['cfg']['Server']['MaxTableUiprefs'];
+ if ($rows_count > $max_rows) {
+ $num_rows_to_delete = $rows_count - $max_rows;
+ $sql_query =
+ ' DELETE FROM ' . $pma_table .
+ ' ORDER BY last_update ASC' .
+ ' LIMIT ' . $num_rows_to_delete;
+ $success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']);
+
+ if (!$success) {
+ $message = PMA_Message::error(__('Failed to cleanup table UI preferences (see cfg["Server"]["MaxTableUiprefs"] documentation)'));
+ $message->addMessage('
');
+ $message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink'])));
+ print_r($message);
+ return $message;
+ }
+ }
+
return true;
}
diff --git a/libraries/advisor.class.php b/libraries/advisor.class.php
index 11e0119d9d..75c8a8d9b8 100644
--- a/libraries/advisor.class.php
+++ b/libraries/advisor.class.php
@@ -43,11 +43,11 @@ class Advisor
'errors' => array()
);
- foreach($this->parseResult['rules'] as $rule) {
+ foreach ($this->parseResult['rules'] as $rule) {
$this->variables['value'] = 0;
$precond = true;
- if(isset($rule['precondition'])) {
+ if (isset($rule['precondition'])) {
try {
$precond = $this->ruleExprEvaluate($rule['precondition']);
} catch (Exception $e) {
@@ -56,9 +56,9 @@ class Advisor
}
}
- if(! $precond)
+ if (! $precond) {
$this->addRule('unchecked', $rule);
- else {
+ } else {
try {
$value = $this->ruleExprEvaluate($rule['formula']);
} catch(Exception $e) {
@@ -87,7 +87,7 @@ class Advisor
function splitJustification($rule)
{
$jst = preg_split('/\s*\|\s*/', $rule['justification'], 2);
- if(count($jst) > 1) {
+ if (count($jst) > 1) {
$jst[0] = preg_replace('/%( |,|\.|$)/','%%\1',$jst[0]);
return array($jst[0], $jst[1]);
}
@@ -95,12 +95,13 @@ class Advisor
}
// Adds a rule to the result list
- function addRule($type, $rule) {
+ function addRule($type, $rule)
+ {
switch($type) {
case 'notfired':
case 'fired':
$jst = Advisor::splitJustification($rule);
- if(count($jst) > 1) {
+ if (count($jst) > 1) {
try {
/* Translate */
$jst[0] = _gettext($jst[0]);
@@ -133,14 +134,15 @@ class Advisor
// Runs a code expression, replacing variable names with their respective values
// ignoreUntil: if > 0, it doesn't replace any variables until that string position, but still evaluates the whole expr
- function ruleExprEvaluate($expr, $ignoreUntil = 0) {
- if($ignoreUntil > 0) {
+ function ruleExprEvaluate($expr, $ignoreUntil = 0)
+ {
+ if ($ignoreUntil > 0) {
$exprIgnore = substr($expr,0,$ignoreUntil);
$expr = substr($expr,$ignoreUntil);
}
$expr = preg_replace('/fired\s*\(\s*(\'|")(.*)\1\s*\)/Uie','1',$expr); //isset($this->runResult[\'fired\']
$expr = preg_replace('/\b(\w+)\b/e','isset($this->variables[\'\1\']) ? (!is_numeric($this->variables[\'\1\']) ? \'"\'.$this->variables[\'\1\'].\'"\' : $this->variables[\'\1\']) : \'\1\'', $expr);
- if($ignoreUntil > 0){
+ if ($ignoreUntil > 0) {
$expr = $exprIgnore . $expr;
}
$value = 0;
@@ -149,12 +151,15 @@ class Advisor
eval('$value = '.$expr.';');
$err = ob_get_contents();
ob_end_clean();
- if($err) throw new Exception(strip_tags($err) . ' Executed code: $value = '.$expr.';');
+ if ($err) {
+ throw new Exception(strip_tags($err) . ' Executed code: $value = '.$expr.';');
+ }
return $value;
}
// Reads the rule file into an array, throwing errors messages on syntax errors
- function parseRulesFile() {
+ function parseRulesFile()
+ {
$file = file('libraries/advisory_rules.txt');
$errors = array();
$rules = array();
@@ -166,15 +171,17 @@ class Advisor
for ($i = 0; $i<$numLines; $i++) {
$line = $file[$i];
- if($line[0] == '#' || $line[0] == "\n") continue;
+ if ($line[0] == '#' || $line[0] == "\n") {
+ continue;
+ }
// Reading new rule
- if(substr($line, 0, 4) == 'rule') {
- if($ruleLine > 0) {
+ if (substr($line, 0, 4) == 'rule') {
+ if ($ruleLine > 0) {
$errors[] = 'Invalid rule declaration on line '.($i+1). ', expected line '.$ruleSyntax[$ruleLine++].' of previous rule' ;
continue;
}
- if(preg_match("/rule\s'(.*)'( \[(.*)\])?$/",$line,$match)) {
+ if (preg_match("/rule\s'(.*)'( \[(.*)\])?$/",$line,$match)) {
$ruleLine = 1;
$j++;
$rules[$j] = array( 'name' => $match[1]);
@@ -184,19 +191,27 @@ class Advisor
}
continue;
} else {
- if($ruleLine == -1) $errors[] = 'Unexpected characters on line '.($i+1);
+ if ($ruleLine == -1) {
+ $errors[] = 'Unexpected characters on line '.($i+1);
+ }
}
// Reading rule lines
- if($ruleLine > 0) {
- if(!isset($line[0])) continue; // Empty lines are ok
+ if ($ruleLine > 0) {
+ if (!isset($line[0])) {
+ continue; // Empty lines are ok
+ }
// Non tabbed lines are not
- if($line[0] != "\t") { $errors[] = 'Unexpected character on line '.($i+1).'. Expected tab, but found \''.$line[0].'\''; continue; }
+ if ($line[0] != "\t") {
+ $errors[] = 'Unexpected character on line '.($i+1).'
+ . Expected tab, but found \''.$line[0].'\'';
+ continue;
+ }
$rules[$j][$ruleSyntax[$ruleLine++]] = chop(substr($line,1));
}
// Rule complete
- if($ruleLine == $numRules) {
+ if ($ruleLine == $numRules) {
$ruleLine = -1;
}
}
@@ -210,23 +225,22 @@ function PMA_bytime($num, $precision)
$per = '';
if ($num >= 1) { # per second
$per = "per second";
- }
- elseif ($num*60 >= 1) { # per minute
+ } elseif ($num*60 >= 1) { # per minute
$num = $num*60;
$per = "per minute";
- }
- elseif ($num*60*60 >=1 ) { # per hour
+ } elseif ($num*60*60 >=1 ) { # per hour
$num = $num*60*60;
$per = "per hour";
- }
- else {
+ } else {
$num = $num*60*60*24;
$per = "per day";
}
$num = round($num, $precision);
- if($num == 0) $num = '<'.pow(10,-$precision);
+ if ($num == 0) {
+ $num = '<'.pow(10,-$precision);
+ }
return "$num $per";
}
diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt
index edbdb7b250..dd1843665d 100644
--- a/libraries/advisory_rules.txt
+++ b/libraries/advisory_rules.txt
@@ -44,14 +44,14 @@ rule 'Questions below 1,000'
Let the server run for a longer time until it has executed a greater amount of queries.
Current amount of Questions: %s | Questions
-rule '% slow queries' [Questions > 0]
+rule 'Percentage of slow queries' [Questions > 0]
Slow_queries / Questions * 100
value >= 5
There is a lot of slow queries compared to the overall amount of Queries.
You might want to increase {long_query_time} or optimize the queries listed in the slow query log
The slow query rate should be below 5%, your value is %s%. | round(value,2)
-rule 'slow query rate' [Questions > 0]
+rule 'Slow query rate' [Questions > 0]
(Slow_queries / Questions * 100) / Uptime
value * 60 * 60 > 1
There is a high percentage of slow queries compared to the server uptime.
@@ -127,7 +127,7 @@ rule 'Query cache disabled'
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.
query_cache_size is set to 0 or query_cache_type is set to 'OFF'
-rule 'memcached usage' [!fired('Query cache disabled')]
+rule 'Query cache usage' [!fired('Query cache disabled')]
Questions / Uptime
value > 100
Suboptimal caching method.
@@ -178,14 +178,14 @@ rule 'Query cache min result size' [!fired('Query cache disabled')]
#
# Sorts
-rule '% sorts that cause temporary tales' [Sort_scan + Sort_range > 0]
+rule 'Percentage of sorts that cause temporary tables' [Sort_scan + Sort_range > 0]
Sort_merge_passes / (Sort_scan + Sort_range) * 100
value > 10
Too many sorts are causing temporary tables.
Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending on your system memory limits
%s% of all sorts cause temporary tables, this value should be lower than 10%. | round(value,1)
-rule 'rate of sorts that cause temporary tables'
+rule 'Rate of sorts that cause temporary tables'
Sort_merge_passes / Uptime
value * 60 * 60 > 1
Too many sorts are causing temporary tables.
@@ -200,32 +200,32 @@ rule 'Sort rows'
Sorted rows average: %s | PMA_bytime(value,2)
# Joins, scans
-rule 'rate of joins without indexes'
+rule 'Rate of joins without indexes'
(Select_range_check + Select_scan + Select_full_join) / Uptime
value * 60 * 60 > 1
There are too many joins without indexes.
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
Table joins average: %s, this value should be less than 1 per hour | PMA_bytime(value,2)
-rule 'rate of reading first index entry'
+rule 'Rate of reading first index entry'
Handler_read_first / Uptime
value * 60 * 60 > 1
The rate of reading the first index entry is high.
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.
Index scans average: %s, this value should be less than 1 per hour | PMA_bytime(value,2)
-rule 'rate of reading fixed position'
+rule 'Rate of reading fixed position'
Handler_read_rnd / Uptime
value * 60 * 60 > 1
The rate of reading data from a fixed position is high.
- This indicates 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.
+ 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.
Rate of reading fixed position average: %s, this value should be less than 1 per hour | PMA_bytime(value,2)
-rule 'rate of reading next table row'
+rule 'Rate of reading next table row'
Handler_read_rnd_next / Uptime
value * 60 * 60 > 1
The rate of reading the next table row is high.
- This indicates many queries are doing full table scans. Add indexes where applicable.
+ This indicates that many queries are doing full table scans. Add indexes where applicable.
Rate of reading next table row: %s, this value should be less than 1 per hour | PMA_bytime(value,2)
# temp tables
@@ -236,14 +236,14 @@ rule 'tmp_table_size vs. max_heap_table_size'
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.
Current values are tmp_table_size: %s, max_heap_table_size: %s | implode(' ',PMA_formatByteDown(tmp_table_size, 2, 2)), implode(' ',PMA_formatByteDown(max_heap_table_size, 2, 2))
-rule '% temp disk tables' [Created_tmp_tables + Created_tmp_disk_tables > 0]
+rule 'Percentage of temp tables on disk' [Created_tmp_tables + Created_tmp_disk_tables > 0]
Created_tmp_disk_tables / (Created_tmp_tables + Created_tmp_disk_tables) * 100
value > 25
Many temporary tables are being written to disk instead of being kept in memory.
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
%s% of all temporary tables are being written to disk, this value should be below 25% | round(value,1)
-rule 'temp disk rate'
+rule 'Temp disk rate'
Created_tmp_disk_tables / Uptime
value * 60 * 60 > 1
Many temporary tables are being written to disk instead of being kept in memory.
@@ -255,7 +255,7 @@ rule 'temp disk rate'
# that sort_buffer_size should be left as it is. And increasing read_buffer_size is only suggested when there are a lot of
# table scans (http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_read_buffer_size and other sources) though
# setting it too high is bad too (http://www.mysqlperformanceblog.com/2007/09/17/mysql-what-read_buffer_size-value-is-optimal/).
-#rule 'temp table rate'
+#rule 'Temp table rate'
# Created_tmp_tables / Uptime
# value * 60 * 60 > 1
# Many intermediate temporary tables are being created.
@@ -270,7 +270,7 @@ rule 'MyISAM key buffer size'
Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a good start.
key_buffer_size is 0
-rule 'max % MyISAM key buffer ever used' [key_buffer_size > 0]
+rule 'Max % MyISAM key buffer ever used' [key_buffer_size > 0]
Key_blocks_used * key_cache_block_size / key_buffer_size * 100
value < 95
MyISAM key buffer (index cache) % used is low.
@@ -278,14 +278,14 @@ rule 'max % MyISAM key buffer ever used' [key_buffer_size > 0]
max % MyISAM key buffer ever used: %s, this value should be above 95% | round(value,1)
# Don't fire if above rule fired - we don't need the same advice twice
-rule '% MyISAM key buffer used' [key_buffer_size > 0 && !fired('max % MyISAM key buffer ever used')]
+rule 'Percentage of MyISAM key buffer used' [key_buffer_size > 0 && !fired('max % MyISAM key buffer ever used')]
( 1 - Key_blocks_unused * key_cache_block_size / key_buffer_size) * 100
value < 95
MyISAM key buffer (index cache) % used is low.
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.
% MyISAM key buffer used: %s, this value should be above 95% | round(value,1)
-rule '% index reads from memory' [Key_read_requests > 0]
+rule 'Percentage of index reads from memory' [Key_read_requests > 0]
100 - (Key_reads / Key_read_requests * 100)
value < 95
The % of indexes that use the MyISAM key buffer is low.
@@ -294,21 +294,21 @@ rule '% index reads from memory' [Key_read_requests > 0]
#
# other caches
-rule 'rate of table open'
+rule 'Rate of table open'
Opened_tables / Uptime
value*60*60 > 10
The rate of opening tables is high.
Opening tables requires disk I/O which is costly. Increasing {table_open_cache} might avoid this.
Opened table rate: %s, this value should be less than 10 per hour | PMA_bytime(value,2)
-rule '% open files'
+rule 'Percentage of used open files limit'
Open_files / open_files_limit * 100
value > 85
The number of open files is approaching the max number of open files. You may get a "Too many open files" error.
Consider increasing {open_files_limit}, and check the error log when restarting after changing open_files_limit.
The number of opened files is at %s% of the limit. It should be below 85% | round(value,1)
-rule 'rate of open files'
+rule 'Rate of open files'
Open_files / Uptime
value * 60 * 60 > 5
The rate of opening files is high.
@@ -329,14 +329,14 @@ rule 'Table lock wait rate'
Optimize queries and/or use InnoDB to reduce lock wait.
Table lock wait rate: %s, this value should be less than 1 per hour | PMA_bytime(value,2)
-rule 'thread cache'
+rule 'Thread cache'
thread_cache_size
value < 1
Thread cache is disabled, resulting in more overhead from new connections to MySQL.
Enable the thread cache by setting {thread_cache_size} > 0.
The thread cache is set to 0
-rule 'thread cache hit rate %' [thread_cache_size > 0]
+rule 'Thread cache hit rate %' [thread_cache_size > 0]
100 - Threads_created / Connections
value < 80
Thread cache is not efficient.
@@ -359,35 +359,35 @@ rule 'Slow launch time'
#
#Connections
-rule '% connections used'
+rule 'Percentage of used connections'
Max_used_connections / max_connections * 100
value > 80
The maximum amount of used connections is getting close to the value of max_connections.
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.
Max_used_connections is at %s% of max_connections, it should be below 80% | round(value,1)
-rule '% aborted connections'
+rule 'Percentage of aborted connections'
Aborted_connects / Connections * 100
value > 1
Too many connections are aborted.
Connections are usually aborted when they cannot be authorized. This article might help you track down the source.
%s% of all connections are aborted. This value should be below 1% | round(value,1)
-rule 'rate of aborted connections'
+rule 'Rate of aborted connections'
Aborted_connects / Uptime
value * 60 * 60 > 1
Too many connections are aborted
Connections are usually aborted when they cannot be authorized. This article might help you track down the source.
Aborted connections rate is at %s, this value should be less than 1 per hour | PMA_bytime(value,2)
-rule '% aborted clients'
+rule 'Percentage of aborted clients'
Aborted_clients / Connections * 100
value > 2
Too many clients are aborted.
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.
%s% of all clients are aborted. This value should be below 2% | round(value,1)
-rule 'rate of aborted clients'
+rule 'Rate of aborted clients'
Aborted_clients / Uptime
value * 60 * 60 > 1
Too many clients are aborted.
@@ -403,7 +403,7 @@ rule 'Is InnoDB disabled?'
InnoDB is usually the better choice for table engines.
have_innodb is set to 'value'
-rule '% InnoDB log size' [innodb_buffer_pool_size > 0]
+rule 'InnoDB log size' [innodb_buffer_pool_size > 0]
innodb_log_file_size / innodb_buffer_pool_size * 100
value < 20
The InnoDB log file size is not an appropriate size, in relation to the InnoDB buffer pool.
diff --git a/libraries/config.default.php b/libraries/config.default.php
index e5589a0b0d..d8367e5839 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -377,6 +377,19 @@ $cfg['Servers'][$i]['tracking'] = '';
*/
$cfg['Servers'][$i]['userconfig'] = '';
+/**
+ * Maximum number of records saved in $cfg['Servers'][$i]['table_uiprefs'] table.
+ *
+ * In case where tables in databases is modified (e.g. dropped or renamed),
+ * table_uiprefs may contains invalid data (referring to tables which are not
+ * exist anymore).
+ * This configuration make sure that we only keep N (N = MaxTableUiprefs)
+ * newest record in table_uiprefs and automatically delete older records.
+ *
+ * @global integer $cfg['Servers'][$i]['userconfig'] = '';
+ */
+$cfg['Servers'][$i]['MaxTableUiprefs'] = 100;
+
/**
* set to false if you know that your pma_* tables are up to date.
* This prevents compatibility checks and thereby increases performance.
diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php
index 6cb9f20fc8..77f53702cb 100644
--- a/libraries/config/messages.inc.php
+++ b/libraries/config/messages.inc.php
@@ -395,6 +395,8 @@ $strConfigServers_history_name = __('SQL query history table');
$strConfigServers_host_desc = __('Hostname where MySQL server is running');
$strConfigServers_host_name = __('Server hostname');
$strConfigServers_LogoutURL_name = __('Logout URL');
+$strConfigServers_MaxTableUiprefs_desc = __('This configuration make sure that we only keep N (N = MaxTableUiprefs) newest record in "table_uiprefs" and automatically delete older records');
+$strConfigServers_MaxTableUiprefs_name = __('Maximum number of records saved in "table_uiprefs" table');
$strConfigServers_nopassword_desc = __('Try to connect without password');
$strConfigServers_nopassword_name = __('Connect without password');
$strConfigServers_only_db_desc = __('You can use MySQL wildcard characters (% and _), escape them if you want to use their literal instances, i.e. use [kbd]\'my\_db\'[/kbd] and not [kbd]\'my_db\'[/kbd]. Using this option you can sort database list, just enter their names in order and use [kbd]*[/kbd] at the end to show the rest in alphabetical order.');
diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php
index 1ccb89feab..8ab287496b 100644
--- a/libraries/config/setup.forms.php
+++ b/libraries/config/setup.forms.php
@@ -78,7 +78,8 @@ $forms['Servers']['Server_pmadb'] = array('Servers' => array(1 => array(
'tracking' => 'pma_tracking',
'table_coords' => 'pma_table_coords',
'pdf_pages' => 'pma_pdf_pages',
- 'designer_coords' => 'pma_designer_coords')));
+ 'designer_coords' => 'pma_designer_coords',
+ 'MaxTableUiprefs' => 100)));
$forms['Servers']['Server_tracking'] = array('Servers' => array(1 => array(
'tracking_version_auto_create',
'tracking_default_statements',
diff --git a/libraries/engines/pbxt.lib.php b/libraries/engines/pbxt.lib.php
index 0ebd2ca51a..dc3c47dba5 100644
--- a/libraries/engines/pbxt.lib.php
+++ b/libraries/engines/pbxt.lib.php
@@ -91,7 +91,7 @@ class PMA_StorageEngine_pbxt extends PMA_StorageEngine
*/
function resolveTypeSize($formatted_size)
{
- if (preg_match('/^[0-9]+[a-zA-Z]+$/', $formatted_size)){
+ if (preg_match('/^[0-9]+[a-zA-Z]+$/', $formatted_size)) {
$value = PMA_extractValueFromFormattedSize($formatted_size);
} else {
$value = $formatted_size;
diff --git a/libraries/export/xml.php b/libraries/export/xml.php
index 3e4bda2a6c..a1f7d8f3d1 100644
--- a/libraries/export/xml.php
+++ b/libraries/export/xml.php
@@ -85,7 +85,8 @@ if (isset($plugin_list)) {
*
* @access public
*/
- function PMA_exportFooter() {
+ function PMA_exportFooter()
+ {
$foot = '';
return PMA_exportOutputHandler($foot);
@@ -98,7 +99,8 @@ if (isset($plugin_list)) {
*
* @access public
*/
- function PMA_exportHeader() {
+ function PMA_exportHeader()
+ {
global $crlf;
global $cfg;
global $db;
@@ -268,7 +270,8 @@ if (isset($plugin_list)) {
*
* @access public
*/
- function PMA_exportDBHeader($db) {
+ function PMA_exportDBHeader($db)
+ {
global $crlf;
if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
@@ -278,9 +281,7 @@ if (isset($plugin_list)) {
. ' ' . $crlf;
return PMA_exportOutputHandler($head);
- }
- else
- {
+ } else {
return true;
}
}
@@ -293,14 +294,13 @@ if (isset($plugin_list)) {
*
* @access public
*/
- function PMA_exportDBFooter($db) {
+ function PMA_exportDBFooter($db)
+ {
global $crlf;
if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
return PMA_exportOutputHandler(' ' . $crlf);
- }
- else
- {
+ } else {
return true;
}
}
@@ -313,7 +313,8 @@ if (isset($plugin_list)) {
*
* @access public
*/
- function PMA_exportDBCreate($db) {
+ function PMA_exportDBCreate($db)
+ {
return true;
}
@@ -329,7 +330,8 @@ if (isset($plugin_list)) {
*
* @access public
*/
- function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
+ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
+ {
if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
$result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED);
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index f4577890c5..eda224fc54 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -811,9 +811,7 @@ function PMA_analyzeTable(&$table)
}
return array($types, $sizes);
- }
- else
- {
+ } else {
/**
* TODO: Handle this better
*/
@@ -1089,8 +1087,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null, &$additional_sql =
unset($params);
$num_tables = count($tables);
- for ($i = 0; $i < $num_tables; ++$i)
- {
+ for ($i = 0; $i < $num_tables; ++$i) {
$params = array('db' => (string)$db_name, 'table' => (string)$tables[$i][TBL_NAME]);
$tbl_url = 'sql.php' . PMA_generate_common_url($params);
$tbl_struct_url = 'tbl_structure.php' . PMA_generate_common_url($params);
diff --git a/libraries/import/xml.php b/libraries/import/xml.php
index b51e6d8b9a..ea0bddbafc 100644
--- a/libraries/import/xml.php
+++ b/libraries/import/xml.php
@@ -200,8 +200,7 @@ if (@count($xml->children())) {
foreach ($v1 as $k2 => $v2) {
$row_attr = $v2->attributes();
- if (! array_search((string)$row_attr['name'], $tempRow))
- {
+ if (! array_search((string)$row_attr['name'], $tempRow)) {
$tempRow[] = (string)$row_attr['name'];
}
$tempCells[] = (string)$v2;
diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php
index bde23e3bf2..703d08a2ec 100644
--- a/libraries/sqlparser.lib.php
+++ b/libraries/sqlparser.lib.php
@@ -1388,7 +1388,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
// however, if we are on AS, we must keep the $previous_was_identifier
if (($arr[$i]['type'] == 'alpha_reservedWord')
- && ($upper_data == 'AS')) {
+ && ($upper_data == 'AS')) {
$previous_was_identifier = true;
}
diff --git a/libraries/sqlvalidator.lib.php b/libraries/sqlvalidator.lib.php
index dd3b8ad6c3..68934dd308 100644
--- a/libraries/sqlvalidator.lib.php
+++ b/libraries/sqlvalidator.lib.php
@@ -38,7 +38,7 @@ if (! defined('PHPMYADMIN')) {
* I'm not sure if PEAR was available before this point
* For now we actually use a configuration flag
*/
-if ($cfg['SQLValidator']['use'] == true) {
+if ($cfg['SQLValidator']['use'] == true) {
require_once './libraries/sqlvalidator.class.php';
} // if ($cfg['SQLValidator']['use'] == true)
diff --git a/po/.gitignore b/po/.gitignore
index 37d0c90fdc..62c25de6ca 100644
--- a/po/.gitignore
+++ b/po/.gitignore
@@ -1 +1,5 @@
+# pootle cache
+.translation_index
+*.pending
+# generated file for advisory translations
advisory_rules.php
diff --git a/po/af.po b/po/af.po
index 6c61d25180..996d2070f5 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
+"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Wys alles"
@@ -44,7 +44,7 @@ msgstr "Soek"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -85,7 +85,7 @@ msgstr "Sleutelnaam"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
#, fuzzy
msgid "Description"
msgstr "geen Beskrywing"
@@ -200,7 +200,7 @@ msgstr "Skakels na"
msgid "Comments"
msgstr "Kommentaar"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Kommentaar"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nee"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Nee"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -365,7 +365,7 @@ msgstr "Vertoon PDF skema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -638,8 +638,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -649,7 +649,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -691,7 +691,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
@@ -757,10 +757,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -781,7 +781,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr ""
@@ -882,8 +882,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -919,7 +919,7 @@ msgstr "Die boekmerk is verwyder."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -966,15 +966,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Wil jy regtig "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1053,12 +1053,12 @@ msgstr "Geen Regte"
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1066,17 +1066,17 @@ msgstr ""
msgid "Edit"
msgstr "Verander"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Bediener Keuse"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL-stelling"
@@ -1088,14 +1088,14 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
#, fuzzy
msgid "Total"
msgstr "totaal"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1127,7 +1127,7 @@ msgstr "Bediener Keuse"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1145,161 +1145,191 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Ry Statistiek"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache efficiency"
+msgstr "Spasie verbruik"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache usage"
+msgstr "Spasie verbruik"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache used"
+msgstr "Spasie verbruik"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
msgid "Total memory"
msgstr "totaal"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
msgid "Total Swap"
msgstr "totaal"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Operasies"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Algemene verwantskap funksies"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
msgid "Remove chart"
msgstr "Hernoem tabel na"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Geen"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1307,375 +1337,375 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Onbeskikbaar"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Algemene verwantskap funksies"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Algemene verwantskap funksies"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
msgid "Chart Title"
msgstr "Geen tabelle"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Geen databasisse"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Hoeveelheid rye per bladsy"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
msgid "Total:"
msgstr "totaal"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Local"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
msgid "Reload page"
msgstr "Hernoem tabel na"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Export"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Verander Navraag"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentasie"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentasie"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
msgid "Renaming Databases"
msgstr "Hernoem tabel na"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
msgid "Reload Database"
msgstr "Hernoem tabel na"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "Geen databasisse"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Skep 'n nuwe bladsy"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Gebruik Tabelle"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indekse"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Wys ruitgebied"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Soek"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL-stelling"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL-stelling"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Beloer Data"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "Verwyder"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL-stelling"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL-stelling"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Verander"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1683,110 +1713,110 @@ msgstr ""
msgid "Save"
msgstr "Stoor"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoreer"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "Voeg 'n nuwe veld by"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Kies 'n Veld om te vertoon"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Verander wagwoord"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Voortgebring deur"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Verander wagwoord"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Ma"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1794,30 +1824,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Geen databasisse"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Geen"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorige"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1825,95 +1855,95 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
msgid "Today"
msgstr "totaal"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Biner"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mei"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1921,78 +1951,78 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Des"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2000,100 +2030,100 @@ msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2343,8 +2373,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2478,7 +2508,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
#, fuzzy
msgid "Tables"
msgstr "Tabel"
@@ -2558,7 +2588,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr ""
@@ -2607,7 +2637,7 @@ msgid "Documentation"
msgstr "Dokumentasie"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-stelling"
@@ -2645,7 +2675,7 @@ msgid "Create PHP Code"
msgstr "Skep PHP Kode"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2666,7 +2696,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2771,7 +2801,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5312,8 +5342,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5518,7 +5548,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5589,7 +5619,7 @@ msgid "The row has been deleted"
msgstr "Die ry is verwyder"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Vermoor"
@@ -5605,7 +5635,7 @@ msgstr "Vertoon rye"
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5679,7 +5709,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -6023,8 +6053,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6133,28 +6163,28 @@ msgid "Display MIME types"
msgstr "Vertoon Funksies"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Gasheer (host)"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Generasie Tyd"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Bediener weergawe"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Version"
@@ -6349,49 +6379,49 @@ msgid "Generated by"
msgstr "Voortgebring deur"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL het niks teruggegee nie (dus nul rye)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Geen databasisse"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Slegs struktuur"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6837,14 +6867,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Waarde"
@@ -7055,7 +7085,7 @@ msgid "Returns"
msgstr "Databasis statistieke"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr ""
@@ -7517,13 +7547,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Biner"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7580,11 +7610,11 @@ msgstr ""
msgid "Columns"
msgstr "Kolom name"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Boekmerk hierdie SQL-stelling"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7966,7 +7996,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Gebruiker"
@@ -8413,18 +8443,18 @@ msgstr "Die \"%s\" databasis bestaan nie!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Velde"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8814,8 +8844,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8938,7 +8968,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9077,133 +9107,133 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Uitgebreide toevoegings"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Wys tabelle"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "Voortgebring deur"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Moenie die wagwoord verander nie"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Wys tabelle"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Wys tabelle"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
msgid "Related links:"
msgstr "Operasies"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "Navraag dmv Voorbeeld"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funksie"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9218,130 +9248,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Stellings"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
#, fuzzy
msgid "Command"
msgstr "Kommentaar"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9349,78 +9379,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9428,7 +9458,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9436,42 +9466,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9479,33 +9509,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9514,227 +9544,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9742,99 +9772,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9842,18 +9872,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9861,63 +9891,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sa"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "Voeg 'n nuwe veld by"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Voortgebring deur"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9926,7 +9956,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9934,7 +9964,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9946,7 +9976,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9955,98 +9985,87 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Gebruik"
+msgid "Preset chart"
+msgstr "Hernoem tabel na"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Gebruik"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Kies Tabelle"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Voeg 'n nuwe gebruiker by"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-stelling"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Ry Statistiek"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Kies Alles"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "Navraag dmv Voorbeeld"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Records"
msgid "%d second"
@@ -10054,7 +10073,7 @@ msgid_plural "%d seconds"
msgstr[0] "Rekords"
msgstr[1] "Rekords"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10467,36 +10486,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Valideer SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiket"
@@ -11279,8 +11298,8 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "SQL-stelling"
#: po/advisory_rules.php:16
@@ -11301,7 +11320,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL-stelling"
#: po/advisory_rules.php:21
@@ -11475,12 +11494,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Spasie verbruik"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11537,8 +11550,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11640,8 +11653,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11657,12 +11669,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11695,7 +11707,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11714,7 +11726,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11737,7 +11749,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11746,7 +11758,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11759,7 +11771,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11768,8 +11780,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11800,10 +11812,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tabel(le)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11830,8 +11840,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tabel(le)"
#: po/advisory_rules.php:152
msgid ""
@@ -11870,7 +11882,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11891,7 +11903,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11900,7 +11912,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11919,7 +11931,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Skep 'n nuwe bladsy"
#: po/advisory_rules.php:176
@@ -11938,9 +11950,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Wys tabelle"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Karakterstel van die leer:"
#: po/advisory_rules.php:181
msgid ""
@@ -11962,7 +11974,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Karakterstel van die leer:"
#: po/advisory_rules.php:186
@@ -12003,7 +12015,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -12021,7 +12033,7 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
+msgid "Thread cache hit rate %"
msgstr ""
#: po/advisory_rules.php:206
@@ -12076,8 +12088,7 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, php-format
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr ""
#: po/advisory_rules.php:221
@@ -12100,8 +12111,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
-msgstr ""
+#, fuzzy
+msgid "Percentage of aborted connections"
+msgstr "Tabel kommentaar"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12121,8 +12133,9 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
-msgstr ""
+#, fuzzy
+msgid "Rate of aborted connections"
+msgstr "Tabel kommentaar"
#: po/advisory_rules.php:231
msgid "Too many connections are aborted"
@@ -12135,8 +12148,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+msgid "Percentage of aborted clients"
+msgstr "Tabel kommentaar"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12156,7 +12170,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Tabel kommentaar"
#: po/advisory_rules.php:243
@@ -12181,7 +12195,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12288,6 +12302,22 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Spasie verbruik"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Wys tabelle"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Gebruik"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Gebruik"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ar.po b/po/ar.po
index b469e47460..2080d11a57 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-07 03:51+0200\n"
"Last-Translator: Abdullah Al-Saedi \n"
"Language-Team: arabic \n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "عرض الكل"
@@ -47,7 +47,7 @@ msgstr "بحث"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "اسم المفتاح"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "الوصف"
@@ -201,7 +201,7 @@ msgstr "مرتبط بـ"
msgid "Comments"
msgstr "تعليقات"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "تعليقات"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "لا"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "لا"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -347,8 +347,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: db_operations.php:584
msgid "Edit or export relational schema"
@@ -356,7 +356,7 @@ msgstr "بناء الارتباطات"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -624,8 +624,8 @@ msgstr "التتبع غير نشط."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -635,7 +635,7 @@ msgstr "عرض"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "إستنساخ"
@@ -677,7 +677,7 @@ msgstr "تحقق من الجداول التي تحمل عبء زائد"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "تصدير"
@@ -739,10 +739,10 @@ msgstr "الجداول المتعقبة"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -762,7 +762,7 @@ msgstr "محدث"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "الحالة"
@@ -859,8 +859,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل "
"المشكلة."
@@ -900,7 +900,7 @@ msgstr "لقد حذفت العلامة المرجعية."
msgid "Showing bookmark"
msgstr "عرض العلامة المرجعية"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "تم إنشاء العلامة المرجعية %s"
@@ -951,15 +951,15 @@ msgstr "إضغط للإختيار"
msgid "Click to unselect"
msgstr "إضغط لإلغاء الإختيار"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "أمر \"حذف قاعدة البيانات\" معطل."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "هل تريد حقا"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "أنت على وشك إزالة كامل قاعدة البيانات !"
@@ -1034,12 +1034,12 @@ msgstr "قيد إعادة قراءة الصلاحيات."
msgid "Removing Selected Users"
msgstr "حذف المستخدمين المحددين"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "أغلاق"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1047,15 +1047,15 @@ msgstr "أغلاق"
msgid "Edit"
msgstr "تعديل"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "خريطة التتبع المباشر"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "خريطة conn./process المباشر"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "خريطة الإستعلام المباشر"
@@ -1066,13 +1066,13 @@ msgstr "بيانات ثابتة"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "مجموع كلي"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "آخر"
@@ -1102,7 +1102,7 @@ msgstr "ترافيك الخادم (بالكيلو بايت)"
msgid "Connections since last refresh"
msgstr "الإتصالات منذ آخر تحديث"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "عمليات"
@@ -1120,158 +1120,190 @@ msgstr "العمليات منذ آخر تحديث"
msgid "Questions (executed statements by the server)"
msgstr "العمليات (الجمل المنفذة بواسطة الخادم)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "إحصائيات الإستعلام"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "فشل قراءة ملف الإعدادات"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Query cache efficiency"
+msgstr "التتبع غير نشط."
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache usage"
+msgstr "المساحة المستخدمة"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache used"
+msgstr "المساحة المستخدمة"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "إستخدام النظام للمعالج (CPU)"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "ذاكرة النظام"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "ميجابايت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "كيلوبايت"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "متوسط التحميل"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "إجمالي الذاكرة"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "الذاكرة المؤقتة"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "الذاكرة الحرة"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "الذاكرة المستخدمة"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "مجموع كلي"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "صفحات حرة"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "بايتات أُرسلت"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "بايتات أُستلمت"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "اتصالات"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "العمليات"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "بيانات سير"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "الإعدادات"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "حذف الرسم البياني"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "تحرير العناوين"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "لا شيء"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "(general_log و slow_query_log) مفعلة."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log مفعل."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log مفعل."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "(general_log و slow_query_log) معطلة."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1279,42 +1311,42 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr "long_query_time محددة بـ %d ثانية."
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "تفعيل %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "تعطيل %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "تعيين long_query_time بـ %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1322,312 +1354,312 @@ msgstr ""
"لاتستطيع تغير هذه المتغيرات , فضلاً سجل دخولك كمدير أو أتصل بمدير قاعدة "
"البيانات."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "تغيير الإعدادات"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "الإعدادات الحالية"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "استورد الملفات"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "الفارق"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "مقسوم على %s :"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "قفز لجدول التسجيل"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "عدد الصفوف المدخلة"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "مجموع كلي"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "تحميل"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload Database"
msgid "Reload page"
msgstr "أعادة تحميل قاعدة البيانات"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "استيراد"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "تجديد الإستعلام"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "مستندات وثائقية"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "المصادقة"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "ألغاء"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "تحميل"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "معالجة الطلب"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "خطأ في معالجة الطلب"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "إزالة العمود"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "إضافة مفتاح رئيسي"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "موافق"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "أعادة تسمية قاعدة البيانات"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "أعادة تحميل قاعدة البيانات"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "نسخ قاعدة البيانات "
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "تغيير مجموعة المحارف"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "عليك اختيار عمود واحد على الأقل للعرض"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "أنشئ الجدول"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "إدخال الجدول"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "إضافة حقل جديد"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "أظهر تخطيط الجدول"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "بحث"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "إخفاء نتائج البحث"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "إظهار نتائج البحث"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "استعراض"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "حذف"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !"
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr "ملاحظة: إذا كان الملف يحتوي على جداول متعددة , فإنها سوف تتجمع في واحد"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "إخفاء صندوق الإستعلام"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "إظهار صندوق الإستعلام"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "لايوجد صفوف مختارة"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "تغيير"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "وقت التنفيذ الأقصى"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1635,102 +1667,102 @@ msgstr "وقت التنفيذ الأقصى"
msgid "Save"
msgstr "حفظ"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "إخفاء معايير البحث"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "إظهار معايير البحث"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "تجاهل"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add into comments"
msgid "Add columns"
msgstr "أضف إلى الملاحظات"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "إختيار المفتاح المرجع"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "إختيار المفتاح الغريب"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "اختر الحقل لإظهاره"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "إضافة خيار للعمود"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "اضغط للاختيار"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "توليد كلمة مرور"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "توليد"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "تغيير كلمة المرور"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "أكثر"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1740,27 +1772,27 @@ msgstr ""
"هو %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", آخر إصدار مستقر:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "محدثة"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "إنتهى"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "سابق"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1768,149 +1800,149 @@ msgid "Next"
msgstr "التالي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "اليوم"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "يناير"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "فبراير"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "مارس"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "أبريل"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "مايو"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "يونيو"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "يوليو"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "أغسطس"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "سبتمبر"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "أكتوبر"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "نوفمبر"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "ديسمبر"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "ديسمبر"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "الأحد"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "الإثنين"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "الثلاثاء"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "الأربعاء"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "الخميس"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "الجمعة"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "السبت"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1918,84 +1950,84 @@ msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "السبت"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "الأحد"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "الإثنين"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "الثلاثاء"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "الأربعاء"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "الخميس"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "الجمعة"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "السبت"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "الأسبوع"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "الساعة"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "الدقيقة"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "الثانية"
@@ -2259,8 +2291,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه."
#: libraries/auth/config.auth.lib.php:109
@@ -2400,7 +2432,7 @@ msgstr "مشترك"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "جداول"
@@ -2477,7 +2509,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "إسم المضيف غير صحيح للخادم %1$s."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "خادم"
@@ -2526,7 +2558,7 @@ msgid "Documentation"
msgstr "مستندات وثائقية"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "استعلام SQL"
@@ -2564,7 +2596,7 @@ msgid "Create PHP Code"
msgstr "أنشئ كود PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "تحديث"
@@ -2585,7 +2617,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "مضمن"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "جانبي"
@@ -2694,7 +2726,7 @@ msgstr "إضغط للإختيار"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5199,8 +5231,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5413,7 +5445,7 @@ msgstr "رتب حسب المفتاح"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5483,7 +5515,7 @@ msgid "The row has been deleted"
msgstr "لقد تم حذف الصف"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "إبطال"
@@ -5499,7 +5531,7 @@ msgstr "مشاهدة السجلات "
msgid "total"
msgstr "المجموع"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "استغرق الاستعلام %01.4f ثانية"
@@ -5572,7 +5604,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "وضع InnoDB"
@@ -5915,8 +5947,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6035,28 +6067,28 @@ msgid "Display MIME types"
msgstr "أنواع MIME المتوفرة"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "المزود"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "أنشئ في"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "إصدارة المزود"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP إصدارة"
@@ -6252,49 +6284,49 @@ msgid "Generated by"
msgstr "أنشئ بواسطة"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "قام MySQL بإرجاع نتيجة فارغة."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "بيانات مفقودة لـ %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "اذهب إلى الجدول"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "البنية فقط"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6744,14 +6776,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "متغير"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "القيمة"
@@ -6972,7 +7004,7 @@ msgid "Returns"
msgstr "خيارات الجدول"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "وقت"
@@ -7463,12 +7495,12 @@ msgid "Synchronize"
msgstr "تزامن"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "سجل ثنائي"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "متغيرات"
@@ -7523,11 +7555,11 @@ msgstr ""
msgid "Columns"
msgstr "اسم العمود"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "اجعل علامة مرجعية SQL-استعلام"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
@@ -7955,7 +7987,7 @@ msgstr "نسخة البروتوكول"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "المستخدم"
@@ -8059,8 +8091,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: main.php:314
msgid ""
@@ -8403,17 +8435,17 @@ msgstr "الجدول \"%s\" غير موجود!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "الملفات"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "احذف الاستعلامات المعروضة"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "اعرض الاستعلامات كاملة"
@@ -8801,8 +8833,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -8931,7 +8963,7 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9068,136 +9100,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "تم إيقاف العمليّة %s بنجاح."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "بيانات التشغيل"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "حدث"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "لاتغير كلمة السر"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show tables"
msgid "Show only alert values"
msgstr "شاهد الجدول"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show tables"
msgid "Show unformatted values"
msgstr "شاهد الجدول"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "الروابط"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "نوع الاستعلام"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Actions"
msgid "Instructions"
msgstr "أفعال"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9212,130 +9244,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "تخصيص صفحة بدء التشغيل"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "لكل ساعة"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "لكل دقيقة"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "لكل ثانية"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "أوامر"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "استلم"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "أرسل"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "محاولات أخفقت"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "ألغي"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "رقم"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "أمر"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9343,78 +9375,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9422,7 +9454,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9430,42 +9462,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9473,33 +9505,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9508,227 +9540,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9736,99 +9768,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9836,18 +9868,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9855,66 +9887,66 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "ابدأ"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "إضافة حقل جديد"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "حدث"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "إضافه/حذف عمود حقل"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "إستعادة القيمة الإفتراضية"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9923,7 +9955,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9931,7 +9963,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9943,7 +9975,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "نوع الاستعلام"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10058,7 +10080,7 @@ msgstr[3] "الثانية"
msgstr[4] "الثانية"
msgstr[5] "الثانية"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10474,36 +10496,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "استعرض القيم الغريبة"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "التحقق من استعلام SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "علامة"
@@ -11266,9 +11288,9 @@ msgid "Current amount of Questions: %s"
msgstr "اتصالات"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "إستعلام SQL"
#: po/advisory_rules.php:16
@@ -11290,7 +11312,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show query box"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "إظهار صندوق الإستعلام"
#: po/advisory_rules.php:21
@@ -11474,12 +11496,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "المساحة المستخدمة"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11536,8 +11552,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11640,9 +11656,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "يسمح بإنشاء جداول مؤقتة."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11660,13 +11676,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "يسمح بإنشاء جداول مؤقتة."
#: po/advisory_rules.php:113
#, php-format
@@ -11698,7 +11716,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11717,7 +11735,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11740,7 +11758,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11749,7 +11767,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11762,7 +11780,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11771,8 +11789,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11803,11 +11821,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s جدول (جداول)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11834,8 +11849,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s جدول (جداول)"
#: po/advisory_rules.php:152
msgid ""
@@ -11874,7 +11892,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11895,7 +11913,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11904,7 +11922,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11924,7 +11942,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "أنشئ الجدول"
#: po/advisory_rules.php:176
@@ -11943,10 +11961,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Could not open file: %s"
-msgid "% open files"
-msgstr "لايمكن فتح الملف : %s"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "هيئة الملفات المستوردة"
#: po/advisory_rules.php:181
msgid ""
@@ -11969,7 +11987,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "هيئة الملفات المستوردة"
#: po/advisory_rules.php:186
@@ -12010,7 +12028,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -12028,8 +12046,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "التتبع غير نشط."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12086,9 +12106,9 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time محددة بـ %d ثانية."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "اتصالات"
#: po/advisory_rules.php:221
@@ -12112,9 +12132,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Force SSL connection"
-msgid "% aborted connections"
-msgstr "فرض إتصال SSL"
+#| msgid "Connections"
+msgid "Percentage of aborted connections"
+msgstr "اتصالات"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12136,7 +12156,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "اتصالات"
#: po/advisory_rules.php:231
@@ -12150,8 +12170,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "هيئة الملفات المستوردة"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12172,7 +12194,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "هيئة الملفات المستوردة"
#: po/advisory_rules.php:243
@@ -12199,7 +12221,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12306,6 +12328,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "المساحة المستخدمة"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "لايمكن فتح الملف : %s"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "اتصالات"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "فرض إتصال SSL"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "المساحة"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "المساحة"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -12440,8 +12486,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
-#~ "sهنا%s."
+#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
+#~ "%sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index 5e93833e41..286201b710 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Hamısını göster"
@@ -43,7 +43,7 @@ msgstr "Axtarış"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -84,7 +84,7 @@ msgstr "Açar söz"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Haqqında"
@@ -199,7 +199,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "Qısa İzahatlar"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -210,12 +210,12 @@ msgstr "Qısa İzahatlar"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Xeyir"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -231,7 +231,7 @@ msgstr "Xeyir"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -366,7 +366,7 @@ msgstr "Relational schema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -639,8 +639,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -650,7 +650,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Relations"
@@ -693,7 +693,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
@@ -759,10 +759,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -783,7 +783,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -886,8 +886,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -923,7 +923,7 @@ msgstr "Bookmark silindi."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -972,15 +972,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
@@ -1068,12 +1068,12 @@ msgstr "Qlobal selahiyyetler"
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1081,17 +1081,17 @@ msgstr ""
msgid "Edit"
msgstr "Deyişdir"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Quraşdırılmış Serverler"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL sorğusu"
@@ -1103,13 +1103,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Cemi"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1141,7 +1141,7 @@ msgstr "Quraşdırılmış Serverler"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Prosesler"
@@ -1161,165 +1161,192 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Sıra Statistikası"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Sorğu tipi"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Sorğu tipi"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Sorğu tipi"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Cemi"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Cemi"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Alındı"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Elaqeler"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Emeliyyatlar"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Neqliyyat"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Ümumi elaqe variantları"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
msgid "Remove chart"
msgstr "Cedveli yeniden adlandır"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Heç biri"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1327,381 +1354,381 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Söndürülüb"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Ümumi elaqe variantları"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Ümumi elaqe variantları"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Faylları import et"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Sehife başına düşen setir sayı"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Cemi"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Yerli"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
msgid "Reload page"
msgstr "Cedveli yeniden adlandır"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Eksport"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Sorğunu Yenile"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentasiya"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentasiya"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Yerli"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Prosesler"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Müveffeqiyyetle"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
msgid "Renaming Databases"
msgstr "Cedveli yeniden adlandır"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
msgid "Reload Database"
msgstr "Cedveli yeniden adlandır"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Charset"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Yeni Sehife qur"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Use Tables"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Yeni sahe elave et"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Axtarış"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL sorğusu"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL sorğusu"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "İçindekiler"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s silinir"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL sorğusu"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL sorğusu"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Deyişdir"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1709,110 +1736,110 @@ msgstr ""
msgid "Save"
msgstr "Qeyd Et"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Diqqete Alma"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "Yeni sahe elave et"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Gösterilecek Saheni Seç"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Qurucu"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Baz Ert"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1820,30 +1847,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, 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:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Heç biri"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Evvelki"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1851,96 +1878,96 @@ msgid "Next"
msgstr "Sonrakı"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Cemi"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binary"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "May"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "İyun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "İyul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avq"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1948,78 +1975,78 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Baz"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Baz Ert"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Çerş Axş"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cüme"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2027,100 +2054,100 @@ msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Şen"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Baz"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Baz Ert"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Çerş Axş"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çerş"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cüme Axş"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cüme"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şen"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "istifadede"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2372,8 +2399,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2508,7 +2535,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Cedveller"
@@ -2587,7 +2614,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2636,7 +2663,7 @@ msgid "Documentation"
msgstr "Dokumentasiya"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL sorğusu"
@@ -2674,7 +2701,7 @@ msgid "Create PHP Code"
msgstr "PHP Kodunu Hazırla"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2697,7 +2724,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motorlar"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2804,7 +2831,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5380,8 +5407,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5592,7 +5619,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5664,7 +5691,7 @@ msgid "The row has been deleted"
msgstr "Setir silindi"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Söndür"
@@ -5680,7 +5707,7 @@ msgstr "Gösterilen setirler"
msgid "total"
msgstr "cemi"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "sorğu %01.4f saniyede icra edildi"
@@ -5754,7 +5781,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6100,8 +6127,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6217,28 +6244,28 @@ msgid "Display MIME types"
msgstr "Mövcud olan MIME-tipleri"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Hazırlanma Vaxtı"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Server versiyası"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Versiyası"
@@ -6439,49 +6466,49 @@ msgid "Generated by"
msgstr "Qurucu"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Sadece quruluş"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6936,14 +6963,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Deyişen"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Deyer"
@@ -7157,7 +7184,7 @@ msgid "Returns"
msgstr "Cedvel başlığı"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Müddet"
@@ -7633,13 +7660,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Binary"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Deyişenler"
@@ -7697,11 +7724,11 @@ msgstr ""
msgid "Columns"
msgstr "Sütun adları"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorğusunu bookmark-la"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -8135,7 +8162,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "İstifadeçi"
@@ -8590,18 +8617,18 @@ msgstr "\"%s\" cedveli mövcud deyil!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Sahe sayı"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Emrleri Tam Olaraq Göster"
@@ -8998,8 +9025,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
@@ -9129,7 +9156,7 @@ msgstr "The privileges were reloaded successfully."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9268,12 +9295,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s uğurla söndürüldü (killed)."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9281,124 +9308,124 @@ 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:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Sorğu tipi"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Genişletilmiş girişli"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Cedvelleri göster"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Runtime Me'lumatı"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "Qurucu"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Parolu deyişdirme"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Cedvelleri göster"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Cedvelleri göster"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Sorğu tipi"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funksiya"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9413,130 +9440,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "saatda"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "deqiqede"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "saniyede"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Variantlar"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Alındı"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Gönderildi"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Uğursuz Cehdler"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Dayandırılmış Elaqeler"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "Nömre"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komanda Tipi"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9544,78 +9571,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9623,7 +9650,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9631,42 +9658,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9674,33 +9701,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9709,227 +9736,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9937,99 +9964,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10037,18 +10064,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10056,64 +10083,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Şen"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Yeni sahe elave et"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Qurucu"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10122,7 +10149,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10130,7 +10157,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10142,7 +10169,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Sorğu tipi"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10250,7 +10266,7 @@ msgid_plural "%d seconds"
msgstr[0] "saniyede"
msgstr[1] "saniyede"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10665,36 +10681,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL Tesdiqle"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiket"
@@ -11488,8 +11504,8 @@ msgid "Current amount of Questions: %s"
msgstr "Elaqeler"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Emrleri Tam Olaraq Göster"
#: po/advisory_rules.php:16
@@ -11510,7 +11526,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL sorğusu"
#: po/advisory_rules.php:21
@@ -11686,12 +11702,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Yer istifadesi"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11747,8 +11757,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11853,9 +11863,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Keçici cedveller qurmağa icaze verir."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11873,13 +11883,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Keçici cedveller qurmağa icaze verir."
#: po/advisory_rules.php:113
#, php-format
@@ -11911,7 +11923,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11930,7 +11942,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11953,7 +11965,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11962,7 +11974,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11975,7 +11987,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11984,8 +11996,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12016,10 +12028,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s cedvel"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12046,8 +12056,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s cedvel"
#: po/advisory_rules.php:152
msgid ""
@@ -12088,8 +12100,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sıralama buferinin (keçici yaddaşının) boyu"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12109,8 +12123,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sıralama buferinin (keçici yaddaşının) boyu"
#: po/advisory_rules.php:168
#, php-format
@@ -12118,7 +12134,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12137,7 +12153,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Yeni Sehife qur"
#: po/advisory_rules.php:176
@@ -12156,9 +12172,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Cedvelleri göster"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Faylın Charset-i:"
#: po/advisory_rules.php:181
msgid ""
@@ -12180,7 +12196,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Faylın Charset-i:"
#: po/advisory_rules.php:186
@@ -12222,7 +12238,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Sorğu tipi"
#: po/advisory_rules.php:201
@@ -12240,8 +12256,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "Sorğu tipi"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12295,9 +12312,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Elaqeler"
#: po/advisory_rules.php:221
@@ -12322,7 +12339,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Elaqeler"
#: po/advisory_rules.php:226
@@ -12345,7 +12362,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Elaqeler"
#: po/advisory_rules.php:231
@@ -12359,8 +12376,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "İçindekiler Cedveli"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12381,7 +12400,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "İçindekiler Cedveli"
#: po/advisory_rules.php:243
@@ -12406,8 +12425,9 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+msgid "InnoDB log size"
+msgstr "Sıralama buferinin (keçici yaddaşının) boyu"
#: po/advisory_rules.php:251
msgid ""
@@ -12514,6 +12534,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Yer istifadesi"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Cedvelleri göster"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Elaqeler"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Elaqeler"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Miqdar"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Miqdar"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/be.po b/po/be.po
index 9292dc00ba..ac4d3b5d47 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Паказаць усе"
@@ -46,7 +46,7 @@ msgstr "Пошук"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Імя ключа"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Апісаньне"
@@ -202,7 +202,7 @@ msgstr "Зьвязаная з"
msgid "Comments"
msgstr "Камэнтары"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Камэнтары"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Не"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -365,7 +365,7 @@ msgstr "Рэляцыйная схема"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -638,11 +638,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
-"sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
+"%sдакумэнтацыі%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -651,7 +651,7 @@ msgstr "Выгляд"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Рэплікацыя"
@@ -695,7 +695,7 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспарт"
@@ -763,10 +763,10 @@ msgstr "Праверыць табліцу"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -788,7 +788,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Стан"
@@ -892,8 +892,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -912,8 +912,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
-"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
+"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:335
@@ -939,7 +939,7 @@ msgstr "Закладка была выдаленая."
msgid "Showing bookmark"
msgstr "Паказваючы закладку"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка %s створаная"
@@ -991,15 +991,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Каманды \"DROP DATABASE\" адключаныя."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ці сапраўды вы жадаеце "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
@@ -1088,12 +1088,12 @@ msgstr "Перазагрузіць прывілеі"
msgid "Removing Selected Users"
msgstr "Выдаліць выбраных карыстальнікаў"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1101,17 +1101,17 @@ msgstr ""
msgid "Edit"
msgstr "Рэдагаваць"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Выбар сэрвэра"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL-запыт"
@@ -1123,13 +1123,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Агулам"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1161,7 +1161,7 @@ msgstr "Выбар сэрвэра"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Працэсы"
@@ -1181,172 +1181,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Статыстыка радку"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Кэш запытаў"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Кэш запытаў"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Кэш запытаў"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МіБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "КiБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Колькасьць файлаў логу"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Пул буфэру"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Агулам"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Вольных старонак"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Атрымана"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Падлучэньні"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Пэрсыдзкая"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Трафік"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Перайменаваць базу дадзеных у"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Зьвяць зь сеткай"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Няма"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1354,387 +1386,387 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Уключана"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Адключана"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Загаловак справаздачы"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Базы дадзеных адсутнічаюць"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Файлы"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Файлы"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Колькасьць адсартаваных радкоў."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Агулам"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Лякальны"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Абнавіць"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Імрарт"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Абнавіць запыт"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Дакумэнтацыя"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Падрабязьней..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
msgid "Justification"
msgstr "Аўтэнтыфікацыя..."
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Скасаваць"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Лякальны"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Працэсы"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Перайменаваць базу дадзеных у"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Перайменаваць базу дадзеных у"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Капіяваць базу дадзеных у"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кадыроўка"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Табліца мусіць мець прынамсі адно поле."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Стварыць табліцу"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Выкарыстоўваць табліцы"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Дадаць новае поле"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Паказаць сетку"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Пошук"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL-запыт"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL-запыт"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Прагляд"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Выдаленьне %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL-запыт"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL-запыт"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Ніводны радок ня выбраны"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Зьмяніць"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1742,110 +1774,110 @@ msgstr ""
msgid "Save"
msgstr "Захаваць"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ігнараваць"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Дадаць %s новыя палі"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Выберыце спасылкавы ключ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Выберыце зьнешні ключ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Выберыце поле для адлюстраваньня"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Згенэраваць пароль"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Згенэраваць"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Зьмяніць пароль"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пан"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1853,30 +1885,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Стварыць сувязь"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Базы дадзеных адсутнічаюць"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Дадзеныя"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Папярэдняя старонка"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1884,96 +1916,96 @@ msgid "Next"
msgstr "Наступная старонка"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Агулам"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двайковы"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Сак"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Кра"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Тра"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чэр"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ліп"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Жні"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Кас"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1981,78 +2013,78 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Сьн"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ндз"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пан"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Аўт"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пят"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2060,102 +2092,102 @@ msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ндз"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пан"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Аўт"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сер"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Цач"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пят"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "выкарыстоўваецца"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2423,8 +2455,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -2569,7 +2601,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Табліц"
@@ -2654,7 +2686,7 @@ msgstr ""
"Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сэрвэр"
@@ -2703,7 +2735,7 @@ msgid "Documentation"
msgstr "Дакумэнтацыя"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-запыт"
@@ -2741,7 +2773,7 @@ msgid "Create PHP Code"
msgstr "Стварыць PHP-код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Абнавіць"
@@ -2764,7 +2796,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Машыны"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Прафіляваньне"
@@ -2872,7 +2904,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5494,8 +5526,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -5725,7 +5757,7 @@ msgstr "Сартаваць па ключы"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5795,7 +5827,7 @@ msgid "The row has been deleted"
msgstr "Радок быў выдалены"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Спыніць"
@@ -5811,7 +5843,7 @@ msgstr "Паказаныя запісы"
msgid "total"
msgstr "усяго"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запыт выконваўся %01.4f сэк"
@@ -5887,7 +5919,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Пул буфэру"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Стан InnoDB"
@@ -6286,8 +6318,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6407,28 +6439,28 @@ msgid "Display MIME types"
msgstr "Даступныя MIME-тыпы"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Час стварэньня"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Вэрсія сэрвэра"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Вэрсія PHP"
@@ -6629,50 +6661,50 @@ msgid "Generated by"
msgstr "Створаны"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Толькі структуру"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7129,14 +7161,14 @@ msgid "Slave status"
msgstr "Паказаць стан залежных сэрвэраў"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Зьменная"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Значэньне"
@@ -7355,7 +7387,7 @@ msgid "Returns"
msgstr "Тып працэдуры"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Час"
@@ -7849,12 +7881,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Двайковы лог"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Зьменныя"
@@ -7913,11 +7945,11 @@ msgstr "Каляндар"
msgid "Columns"
msgstr "Назвы калёнак"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Дадаць гэты SQL-запыт у закладкі"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
@@ -8391,7 +8423,7 @@ msgstr "Вэрсія пратаколу"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Карыстальнік"
@@ -8867,17 +8899,17 @@ msgstr "Табліцы \"%s\" не існуе!"
msgid "Select binary log to view"
msgstr "Вылучыце двайковы лог для прагляду"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Файлы"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Абразаць паказаныя запыты"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Паказаць поўныя запыты"
@@ -9275,8 +9307,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
@@ -9410,7 +9442,7 @@ msgstr "Прывілеі былі пасьпяхова перазагружан
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Паказаць стан залежных сэрвэраў"
@@ -9551,136 +9583,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Паток %s быў пасьпяхова спынены."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Апрацоўнік"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Кэш запытаў"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Патокі"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Часовыя дадзеныя"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Адкладзеныя ўстаўкі"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Кэш ключоў"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Аб'яднаньні"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Сартаваньне"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Каардынатар перакладу"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Скінуць (закрыць) усе табліцы"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Паказаць залежныя сэрвэры"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Паказаць стан залежных сэрвэраў"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Скінуць кэш запытаў"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Бягучая інфармацыя"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Абнавіць"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Не зьмяняць пароль"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Сувязі"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Тып запыту"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функцыі"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9695,70 +9727,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "у гадзіну"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "у хвіліну"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "у сэкунду"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Выразы"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Рэплікацыя"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9766,47 +9798,47 @@ msgstr ""
"На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму "
"статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Атрымана"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Адпраўлена"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "максымум адначасовых злучэньняў"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Няўдалых спробаў"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Спынена"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Каманда"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9816,17 +9848,17 @@ msgstr ""
"якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для "
"захоўваньня выразаў транзакцыі."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9838,11 +9870,11 @@ msgstr ""
"павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў "
"памяці, а не на дыску."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Колькасьць часовых файлаў, створаных mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9850,7 +9882,7 @@ msgstr ""
"Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна "
"створаныя сэрвэрам падчас выкананьня выразаў."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9858,7 +9890,7 @@ msgstr ""
"Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя "
"памылкі (пэўна, дубляваныя ключы)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9867,23 +9899,23 @@ msgstr ""
"Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны "
"паток."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Колькасьць запісаных INSERT DELAYED радкоў."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Колькасьць выкананых FLUSH-выразаў."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Колькасьць унутраных COMMIT-выразаў."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Колькасьць разоў выдаленьня радка з табліцы."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9893,7 +9925,7 @@ msgstr ""
"яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. "
"Handler_discover паказвае колькасьць высьвятленьняў табліц."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9904,7 +9936,7 @@ msgstr ""
"сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 "
"індэксаваная."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9912,7 +9944,7 @@ msgstr ""
"Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна "
"вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9922,7 +9954,7 @@ msgstr ""
"павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам "
"абмежаваньняў або калі адбываецца сканаваньне індэксаў."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9930,7 +9962,7 @@ msgstr ""
"Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад "
"чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9942,7 +9974,7 @@ msgstr ""
"прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам "
"або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9954,37 +9986,37 @@ msgstr ""
"што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб "
"выкарыстоўваць перавагі індэксаў."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Колькасьць унутраных выразаў ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Колькасьць запытаў устаўкі радка ў табліцу."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Колькасьць зьмененых старонак."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Колькасьць вольных старонак."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9994,7 +10026,7 @@ msgstr ""
"старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць "
"быць скінутыя ці выдаленыя з-за пэўнай прычыны."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -10007,11 +10039,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Агульны памер буфэрнага пулу, у старонках."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10020,7 +10052,7 @@ msgstr ""
"адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым "
"парадку."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10028,11 +10060,11 @@ msgstr ""
"Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта "
"адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10040,7 +10072,7 @@ msgstr ""
"Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага "
"пулу, а таму зрабіла аднастаронкавае чытаньне."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -10054,55 +10086,55 @@ msgstr ""
"падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны "
"правільна, гэтае значэньне мусіць быць маленькім."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Колькасьць апэрацыяў fsync() на бягучы момант."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Агульная колькасьць чытаньняў дадзеных."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Агульная колькасьць запісаў дадзеных."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, "
"якія былі запісаныя для гэтай мэты."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, "
"якія былі запісаныя для гэтай мэты."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -10110,35 +10142,35 @@ msgstr ""
"Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і "
"таму давялося чакаць, пакуль ён не ачысьціцца."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Колькасьць запісаў у лог."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Колькасьць фізычна выкананых запісаў у лог-файл."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Колькасьць байтаў, запісаных у лог-файл."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Колькасьць створаных старонак."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10146,55 +10178,55 @@ msgstr ""
"Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні "
"вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Колькасьць прачытаных старонак."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Колькасьць запісаных старонак."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
"Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у "
"мілісэкундах."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Колькась радкоў, прачытаных з табліц InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10202,7 +10234,7 @@ msgstr ""
"Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі "
"скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10210,7 +10242,7 @@ msgstr ""
"Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна "
"выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -10220,11 +10252,11 @@ msgstr ""
"ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць "
"блёкаў, якія выкарастоўваліся адначасова."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -10234,15 +10266,15 @@ msgstr ""
"вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць "
"промахаў у кэш можна вылічыць як Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10253,17 +10285,17 @@ msgstr ""
"Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў "
"зкампіляваны."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10271,39 +10303,39 @@ msgstr ""
"Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, "
"значэньне кэшу табліц імаверна вельмі малое."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Колькасьць адкрытых файлаў."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Колькасьць адкрытых табліц."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Колькасьць вольнай памяці для кэшу запытаў."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Колькасьць зваротаў да кэшу."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Колькасьць запытаў, якія былі даданыя ў кэш."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10316,7 +10348,7 @@ msgstr ""
"выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з "
"кэшу."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10324,19 +10356,19 @@ msgstr ""
"Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за "
"значэньня дырэктывы query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Агульная колькасьць блёкаў у кэшы запытыў."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10344,13 +10376,13 @@ msgstr ""
"Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае "
"значэньне ня роўнае 0, варта праверыць індэксы ў табліцах."
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай "
"табліцы."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10359,7 +10391,7 @@ msgstr ""
"ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта "
"праверыць індэксы ў табліцах.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10367,17 +10399,17 @@ msgstr ""
"Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай "
"табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-"
"патокам."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10385,13 +10417,13 @@ msgstr ""
"Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі "
"паўтараў транзакцыі."
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным "
"да сэрвэра, які яго кантралюе."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10399,14 +10431,14 @@ msgstr ""
"Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для "
"стварэньня."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым "
"long_query_time сэкундаў."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10416,25 +10448,25 @@ msgstr ""
"значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай "
"зьменнай sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
"Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх "
"слупкоў."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Колькасьць адсартаваных радкоў."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10446,7 +10478,7 @@ msgstr ""
"існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а "
"пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10456,11 +10488,11 @@ msgstr ""
"вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае "
"ў чырвоны колер, варта павялічыць значэньне thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Колькасьць адкрытых на бягучы момант злучэньняў."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10472,64 +10504,64 @@ msgstr ""
"thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага "
"павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Суб"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Дадаць новае поле"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Абнавіць"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10538,7 +10570,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10546,7 +10578,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10558,7 +10590,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10567,100 +10599,90 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Выкарыстаньне"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "Перайменаваць базу дадзеных у"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Выкарыстаньне"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Выберыце табліцу(ы)"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Некарэктнае імя табліцы"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Дадаць новага карыстальніка"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-запыт"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Статыстыка радку"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Выбраць усё"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тып запыту"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10668,7 +10690,7 @@ msgid_plural "%d seconds"
msgstr[0] "у сэкунду"
msgstr[1] "у сэкунду"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11088,36 +11110,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Праглядзець зьнешнія значэньні"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID устаўленага радку: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "У выглядзе PHP-коду"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "У выглядзе SQL-запыту"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Праверыць SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Праблемы з індэксамі для табліцы `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Метка"
@@ -11917,8 +11939,8 @@ msgid "Current amount of Questions: %s"
msgstr "максымум адначасовых злучэньняў"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Паказаць поўныя запыты"
#: po/advisory_rules.php:16
@@ -11940,7 +11962,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Скінуць кэш запытаў"
#: po/advisory_rules.php:21
@@ -12121,12 +12143,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Выкарыстаньне прасторы"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12183,8 +12199,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12292,9 +12308,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Дазваляе ствараць часовыя табліцы."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12312,13 +12328,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Дазваляе ствараць часовыя табліцы."
#: po/advisory_rules.php:113
#, php-format
@@ -12350,8 +12368,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Праверыць табліцу"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12370,7 +12389,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12393,7 +12412,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12402,7 +12421,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12415,7 +12434,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12424,8 +12443,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12456,10 +12475,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s табліц(ы)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12486,8 +12503,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s табліц(ы)"
#: po/advisory_rules.php:152
msgid ""
@@ -12528,8 +12547,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Памер буфэру сартаваньня"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12549,8 +12570,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Памер буфэру сартаваньня"
#: po/advisory_rules.php:168
#, php-format
@@ -12558,7 +12581,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12578,7 +12601,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Стварыць табліцу"
#: po/advisory_rules.php:176
@@ -12599,10 +12622,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Паказаць адкрытыя табліцы"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Фармат імпартаванага файла"
#: po/advisory_rules.php:181
msgid ""
@@ -12625,7 +12648,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Фармат імпартаванага файла"
#: po/advisory_rules.php:186
@@ -12672,7 +12695,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Кэш ключоў"
#: po/advisory_rules.php:201
@@ -12690,8 +12713,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Кэш ключоў"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12747,10 +12772,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Падлучэньні"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "максымум адначасовых злучэньняў"
#: po/advisory_rules.php:221
msgid ""
@@ -12774,7 +12799,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "максымум адначасовых злучэньняў"
#: po/advisory_rules.php:226
@@ -12797,7 +12822,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "максымум адначасовых злучэньняў"
#: po/advisory_rules.php:231
@@ -12811,8 +12836,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Фармат імпартаванага файла"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12833,7 +12860,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Фармат імпартаванага файла"
#: po/advisory_rules.php:243
@@ -12860,8 +12887,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Памер пулу буфэру"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12973,6 +13002,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Выкарыстаньне прасторы"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Паказаць адкрытыя табліцы"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Падлучэньні"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "максымум адначасовых злучэньняў"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Выкарыстаньне"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Выкарыстаньне"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/be@latin.po b/po/be@latin.po
index 77b2e4a4ba..d922079c5a 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
+"Language: be@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"
+"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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Pakazać usie"
@@ -48,7 +48,7 @@ msgstr "Pošuk"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Imia kluča"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Apisańnie"
@@ -204,7 +204,7 @@ msgstr "Źviazanaja z"
msgid "Comments"
msgstr "Kamentary"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -215,12 +215,12 @@ msgstr "Kamentary"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nie"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -236,7 +236,7 @@ msgstr "Nie"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -368,7 +368,7 @@ msgstr "Relacyjnaja schiema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -644,11 +644,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
-"sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
+"%sdakumentacyi%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -657,7 +657,7 @@ msgstr "Vyhlad"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikacyja"
@@ -701,7 +701,7 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspart"
@@ -767,10 +767,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -790,7 +790,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Stan"
@@ -889,8 +889,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -909,8 +909,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
-"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
+"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:335
@@ -936,7 +936,7 @@ msgstr "Zakładka była vydalenaja."
msgid "Showing bookmark"
msgstr "Pakazvajučy zakładku"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Zakładka %s stvoranaja"
@@ -988,15 +988,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ci sapraŭdy vy žadajecie "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
@@ -1085,12 +1085,12 @@ msgstr "Pierazahruzić pryvilei"
msgid "Removing Selected Users"
msgstr "Vydalić vybranych karystalnikaŭ"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1098,17 +1098,17 @@ msgstr ""
msgid "Edit"
msgstr "Redagavać"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Vybar servera"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Showing SQL query"
msgid "Live query chart"
@@ -1121,13 +1121,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Ahułam"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1159,7 +1159,7 @@ msgstr "Vybar servera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Pracesy"
@@ -1179,174 +1179,206 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Databases statistics"
msgid "Query statistics"
msgstr "Statystyka bazaŭ dadzienych"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Keš zapytaŭ"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Keš zapytaŭ"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Keš zapytaŭ"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Kolkaść fajłaŭ łogu"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Puł buferu"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Ahułam"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Volnych staronak"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Atrymana"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Padłučeńni"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Relations"
msgid "Questions"
msgstr "Suviazi"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Pierajmienavać bazu dadzienych u"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Źviać ź sietkaj"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Nijakaja"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1354,392 +1386,392 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Adklučana"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Zahałovak spravazdačy"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "No databases"
msgid "Jump to Log table"
msgstr "Bazy dadzienych adsutničajuć"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of fields"
msgid "Sum of grouped rows:"
msgstr "Kolkaść paloŭ"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Ahułam"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Reload privileges"
msgid "Loading logs"
msgstr "Pierazahruzić pryvilei"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Abnavić"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Imrart"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Abnavić zapyt"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dakumentacyja"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Padrabiaźniej..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authenticating..."
msgid "Justification"
msgstr "Aŭtentyfikacyja..."
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Skasavać"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Pracesy"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Pierajmienavać bazu dadzienych u"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Pierajmienavać bazu dadzienych u"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kapijavać bazu dadzienych u"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kadyroŭka"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Stvaryć tablicu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Vykarystoŭvać tablicy"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Dadać novaje pole"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Pakazać sietku"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Pošuk"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "in query"
msgid "Hide search results"
msgstr "pa zapytu"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search results"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Prahlad"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Vydaleńnie %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "pa zapytu"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query box"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nivodny radok nia vybrany"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Źmianić"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1747,112 +1779,112 @@ msgstr ""
msgid "Save"
msgstr "Zachavać"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "pa zapytu"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignaravać"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dadać %s novyja pali"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Vybierycie spasyłkavy kluč"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Vybierycie źniešni kluč"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Vybierycie pole dla adlustravańnia"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Zgieneravać parol"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Zgieneravać"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Źmianić parol"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pan"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1860,31 +1892,31 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "Bazy dadzienych adsutničajuć"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nijakaja"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Papiaredniaja staronka"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1892,96 +1924,96 @@ msgid "Next"
msgstr "Nastupnaja staronka"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ahułam"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvajkovy"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Sak"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kra"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Tra"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Čer"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Žni"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Kas"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1989,78 +2021,78 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Śn"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ndz"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pan"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Aŭt"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Piat"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2068,102 +2100,102 @@ msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ndz"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pan"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Aŭt"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sier"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cač"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Piat"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "vykarystoŭvajecca"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2432,8 +2464,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -2579,7 +2611,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tablic"
@@ -2666,7 +2698,7 @@ msgstr ""
"kanfihurycyju."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2715,7 +2747,7 @@ msgid "Documentation"
msgstr "Dakumentacyja"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-zapyt"
@@ -2753,7 +2785,7 @@ msgid "Create PHP Code"
msgstr "Stvaryć PHP-kod"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Abnavić"
@@ -2776,7 +2808,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mašyny"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Prafilavańnie"
@@ -2885,7 +2917,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5472,8 +5504,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -5701,7 +5733,7 @@ msgstr "Sartavać pa klučy"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5771,7 +5803,7 @@ msgid "The row has been deleted"
msgstr "Radok byŭ vydaleny"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Spynić"
@@ -5787,7 +5819,7 @@ msgstr "Pakazanyja zapisy"
msgid "total"
msgstr "usiaho"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Zapyt vykonvaŭsia %01.4f sek"
@@ -5864,7 +5896,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puł buferu"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Stan InnoDB"
@@ -6266,8 +6298,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6388,28 +6420,28 @@ msgid "Display MIME types"
msgstr "Dastupnyja MIME-typy"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Chost"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Čas stvareńnia"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versija servera"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versija PHP"
@@ -6609,48 +6641,48 @@ msgid "Generated by"
msgstr "Stvorany"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Tolki strukturu"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7105,14 +7137,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Źmiennaja"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Značeńnie"
@@ -7331,7 +7363,7 @@ msgid "Returns"
msgstr "Typ pracedury"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Čas"
@@ -7827,12 +7859,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Dvajkovy łog"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Źmiennyja"
@@ -7887,11 +7919,11 @@ msgstr ""
msgid "Columns"
msgstr "Nazvy kalonak"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Dadać hety SQL-zapyt u zakładki"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
@@ -7995,8 +8027,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
-"sdakumentacyi%s."
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
+"%sdakumentacyi%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8196,8 +8228,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
-"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
+"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -8370,7 +8402,7 @@ msgstr "Versija pratakołu"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Karystalnik"
@@ -8846,17 +8878,17 @@ msgstr "Tablicy \"%s\" nie isnuje!"
msgid "Select binary log to view"
msgstr "Vyłučycie dvajkovy łog dla prahladu"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Fajły"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Abrazać pakazanyja zapyty"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Pakazać poŭnyja zapyty"
@@ -9255,8 +9287,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
@@ -9390,7 +9422,7 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Pakazać stan zaležnych serveraŭ"
@@ -9528,136 +9560,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Patok %s byŭ paśpiachova spynieny."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Apracoŭnik"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Keš zapytaŭ"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Patoki"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Časovyja dadzienyja"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Adkładzienyja ŭstaŭki"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Keš klučoŭ"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Ab'jadnańni"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sartavańnie"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Kaardynatar pierakładu"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Skinuć (zakryć) usie tablicy"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Pakazać zaležnyja servery"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Pakazać stan zaležnych serveraŭ"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Skinuć keš zapytaŭ"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Biahučaja infarmacyja"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Abnavić"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nie źmianiać parol"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Suviazi"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Typ zapytu"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funkcyi"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9672,69 +9704,69 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "u hadzinu"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "u chvilinu"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "u sekundu"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Vyrazy"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9742,47 +9774,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Atrymana"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Adpraŭlena"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "maksymum adnačasovych złučeńniaŭ"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Niaŭdałych sprobaŭ"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Spyniena"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Kamanda"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9792,17 +9824,17 @@ msgstr ""
"jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł "
"dla zachoŭvańnia vyrazaŭ tranzakcyi."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9814,11 +9846,11 @@ msgstr ""
"pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ "
"pamiaci, a nie na dysku."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9826,7 +9858,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:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9834,7 +9866,7 @@ msgstr ""
"Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja "
"pamyłki (peŭna, dublavanyja klučy)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9843,23 +9875,23 @@ msgstr ""
"Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj "
"ułasny patok."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Kolkaść vykananych FLUSH-vyrazaŭ."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Kolkaść unutranych COMMIT-vyrazaŭ."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9869,7 +9901,7 @@ msgstr ""
"viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. "
"Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9880,7 +9912,7 @@ msgstr ""
"skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 "
"indeksavanaja."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9889,7 +9921,7 @@ msgstr ""
"vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra "
"indeksavanyja."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9899,7 +9931,7 @@ msgstr ""
"pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham "
"abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9907,7 +9939,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:1155
+#: server_status.php:1197
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 "
@@ -9920,7 +9952,7 @@ msgstr ""
"całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć "
"klučy."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9932,37 +9964,37 @@ msgstr ""
"aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja "
"tak, kab vykarystoŭvać pieravahi indeksaŭ."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo "
"niaźmienienych)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Kolkaść źmienienych staronak."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Kolkaść volnych staronak."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9972,7 +10004,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:1165
+#: server_status.php:1207
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 "
@@ -9985,11 +10017,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Ahulny pamier bufernaha pułu, u staronkach."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9998,7 +10030,7 @@ msgstr ""
"adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym "
"paradku."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10006,11 +10038,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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10018,7 +10050,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:1171
+#: server_status.php:1213
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 "
@@ -10032,55 +10064,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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Ahulnaja kolkaść zapisaŭ dadzienych."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -10088,35 +10120,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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Kolkaść zapisaŭ u łog."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Kolkaść stvoranych staronak."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10125,54 +10157,54 @@ msgstr ""
"vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho "
"ŭ bajty."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Kolkaść pračytanych staronak."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Kolkaść zapisanych staronak."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10180,7 +10212,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:1204
+#: server_status.php:1246
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."
@@ -10188,7 +10220,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:1205
+#: server_status.php:1247
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 "
@@ -10198,11 +10230,11 @@ msgstr ""
"stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, "
"jakija vykarastoŭvalisia adnačasova."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10212,15 +10244,15 @@ 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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10231,17 +10263,17 @@ msgstr ""
"Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ "
"zkampilavany."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10249,39 +10281,39 @@ msgstr ""
"Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, "
"značeńnie kešu tablic imavierna vielmi małoje."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Kolkaść adkrytych fajłaŭ."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Kolkaść adkrytych tablic."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Kolkaść zvarotaŭ da kešu."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10294,7 +10326,7 @@ msgstr ""
"vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać "
"z kešu."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10302,19 +10334,19 @@ msgstr ""
"Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za "
"značeńnia dyrektyvy query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10322,13 +10354,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10337,7 +10369,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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10345,17 +10377,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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10363,13 +10395,13 @@ msgstr ""
"Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi "
"paŭtaraŭ tranzakcyi."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10377,14 +10409,14 @@ msgstr ""
"Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla "
"stvareńnia."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10394,25 +10426,25 @@ msgstr ""
"hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia "
"systemnaj źmiennaj sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
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:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Kolkaść adsartavanych radkoŭ."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10424,7 +10456,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:1242
+#: server_status.php:1284
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 "
@@ -10434,11 +10466,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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10450,62 +10482,62 @@ 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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Dadać novaje pole"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Abnavić"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10514,7 +10546,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10522,7 +10554,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10534,7 +10566,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Typ zapytu"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10646,7 +10668,7 @@ msgstr[0] "u sekundu"
msgstr[1] "u sekundu"
msgstr[2] "u sekundu"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11059,36 +11081,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Prahladzieć źniešnija značeńni"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID ustaŭlenaha radku: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "U vyhladzie PHP-kodu"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "U vyhladzie SQL-zapytu"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Pravieryć SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Prablemy z indeksami dla tablicy `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Mietka"
@@ -11884,8 +11906,7 @@ msgid "Current amount of Questions: %s"
msgstr "maksymum adnačasovych złučeńniaŭ"
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -11907,7 +11928,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Skinuć keš zapytaŭ"
#: po/advisory_rules.php:21
@@ -12092,12 +12113,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Vykarystańnie prastory"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12154,8 +12169,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12264,9 +12279,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Dazvalaje stvarać časovyja tablicy."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12284,13 +12299,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Dazvalaje stvarać časovyja tablicy."
#: po/advisory_rules.php:113
#, php-format
@@ -12322,7 +12339,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -12341,7 +12358,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12364,7 +12381,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12373,7 +12390,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12386,7 +12403,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12395,8 +12412,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12427,10 +12444,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tablic(y)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12457,8 +12472,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tablic(y)"
#: po/advisory_rules.php:152
msgid ""
@@ -12499,8 +12516,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Pamier buferu sartavańnia"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12520,8 +12539,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Pamier buferu sartavańnia"
#: po/advisory_rules.php:168
#, php-format
@@ -12529,7 +12550,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12549,7 +12570,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Stvaryć tablicu"
#: po/advisory_rules.php:176
@@ -12570,10 +12591,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Pakazać adkrytyja tablicy"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Farmat impartavanaha fajła"
#: po/advisory_rules.php:181
msgid ""
@@ -12596,7 +12617,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Farmat impartavanaha fajła"
#: po/advisory_rules.php:186
@@ -12643,7 +12664,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Keš klučoŭ"
#: po/advisory_rules.php:201
@@ -12661,8 +12682,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Keš klučoŭ"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12718,10 +12741,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Padłučeńni"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "maksymum adnačasovych złučeńniaŭ"
#: po/advisory_rules.php:221
msgid ""
@@ -12745,7 +12768,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "maksymum adnačasovych złučeńniaŭ"
#: po/advisory_rules.php:226
@@ -12768,7 +12791,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "maksymum adnačasovych złučeńniaŭ"
#: po/advisory_rules.php:231
@@ -12782,8 +12805,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Farmat impartavanaha fajła"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12804,7 +12829,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Farmat impartavanaha fajła"
#: po/advisory_rules.php:243
@@ -12831,8 +12856,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Pamier pułu buferu"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12944,6 +12971,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Vykarystańnie prastory"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Pakazać adkrytyja tablicy"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Padłučeńni"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "maksymum adnačasovych złučeńniaŭ"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Vykarystańnie"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Vykarystańnie"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/bg.po b/po/bg.po
index 6c3e9e390d..5e31000631 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
"Last-Translator: \n"
"Language-Team: bulgarian \n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Показване всички"
@@ -47,7 +47,7 @@ msgstr "Търсене"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Име на ключ"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Описание"
@@ -201,7 +201,7 @@ msgstr "Свързана към"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Коментари"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Не"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Редакция или експорт на релационна схе
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -613,8 +613,8 @@ msgstr "Проследяването е неактивно."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -624,7 +624,7 @@ msgstr "Изглед"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Репликация"
@@ -666,7 +666,7 @@ msgstr "Маркиране на таблиците със загубено мя
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Експорт"
@@ -728,10 +728,10 @@ msgstr "Следени таблици"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -751,7 +751,7 @@ msgstr "Съвременен"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Състояние"
@@ -851,8 +851,8 @@ msgstr "Схемата беше запазена във файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -897,7 +897,7 @@ msgstr "Белязката беше изтрита."
msgid "Showing bookmark"
msgstr "Показване на белязка"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Белязка %s беше създадена"
@@ -951,15 +951,15 @@ msgstr "Щракване за избор"
msgid "Click to unselect"
msgstr "Щракване за отмяна на избора"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" заявката е забранена."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Наистина ли искате да изпълните "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Вие ще УНИЩОЖИТЕ цялата БД!"
@@ -1034,12 +1034,12 @@ msgstr "Презареждане на правата"
msgid "Removing Selected Users"
msgstr "Изтриване на маркираните потребители"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Затваряне"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1047,15 +1047,15 @@ msgstr "Затваряне"
msgid "Edit"
msgstr "Редакция"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Диаграма на трафик в реално време"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Диаграма на връзки/процеси в реално време"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Диаграма на заявки в реално време"
@@ -1066,13 +1066,13 @@ msgstr "Статична информация"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Общо"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Друго"
@@ -1102,7 +1102,7 @@ msgstr "Сървър трафик (в KiB)"
msgid "Connections since last refresh"
msgstr "Връзки след последното опресняване"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Процеси"
@@ -1122,166 +1122,198 @@ msgstr "Връзки след последното опресняване"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Статистика за заявките"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Неуспешно прочитане на конфигурацията"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Буфер за заявки"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Буфер за заявки"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Буфер за заявки"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "КБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total count"
msgid "Total memory"
msgstr "Общ брой"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Общо"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Свободни страници"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Получени"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Конекции"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Версии"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Настройки"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Изтриване БД"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Няма"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1289,364 +1321,364 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Позволено"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Забрано"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "Управление мои настройки"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "Още"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Chart title"
msgid "Chart Title"
msgstr "Заглавие на диаграмата"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Различия"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Прескачане до БД"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Филтър"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Филтър"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Броят добавени редове"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Общо"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Зареждане"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Презареждане"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Импорт"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Допълване заявка"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Документация"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Подробности"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Удостоверяване"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Отмяна"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Зареждане"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Обработка на заявката"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Грешка при обработка на заявката"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Изтриване на колона"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Добавяне на първичен ключ"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Преименуване БД"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Презареждане БД"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Копиране БД"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Промяна знаков набор"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Таблицата трябва да има поне една колона"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Създаване на таблица"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Вмъкване на таблица"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Скриване на индексите"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Показване на индексите"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Търсене"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Скриване резултати от търсенето"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Показване резултати от търсенето"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Прелистване"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Изтриване"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "Дефиницията на съхранена процедура трябва да съдържа израз RETURN!"
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Скриване формата за заявки"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Показване формата за заявки"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Няма върнати редове"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Промяна"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "SQL execution"
msgid "Query execution time"
msgstr "Изпълняване на SQL"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1654,42 +1686,42 @@ msgstr "Изпълняване на SQL"
msgid "Save"
msgstr "Зпазване"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Скриване критерий за търсене"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Показване критерий за търсене"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Игнориране"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Добавяне колона"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Изберете посочвания ключ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Избор външен ключ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Изберете първичен или уникален ключ"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Изберете колона за показване"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1697,59 +1729,59 @@ msgstr ""
"Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги "
"запазите. Искате ли да продължите?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Добавяне опция към колона "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Завличане за промяна на подредбата"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Щракване за сортиране"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Щракване за маркиране/отмаркиране"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Щракнете стрелката, за да изберете колони"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Генериране парола"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генериране"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Смяна парола"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Още"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1759,27 +1791,27 @@ msgstr ""
"версия е %s, излязла на %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", актуална стабилна версия:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "актуално"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Готово"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Преден"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1787,149 +1819,149 @@ msgid "Next"
msgstr "Следващ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Днес"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "януари"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "февруари"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "март"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "април"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "май"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "юни"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "юли"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "август"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "септември"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "октомври"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "ноември"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "декември"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "яну"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "фев"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "септ"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "ное"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "дек"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "неделя"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "понеделник"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "вторник"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "сряда"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "четвъртък"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "петък"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "събота"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1937,84 +1969,84 @@ msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "сб"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "нд"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "пн"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "вт"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "ср"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "чт"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "пт"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Сед"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Час"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "минута"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "секунда"
@@ -2269,8 +2301,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Изглежда не се създали конфигурационен файл. Вероятно ще искате да "
"използвате %1$sскрипта за настройки%2$s, за да го създадете."
@@ -2412,7 +2444,7 @@ msgstr "споделен"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Таблици"
@@ -2491,7 +2523,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сървър"
@@ -2540,7 +2572,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL заявка"
@@ -2578,7 +2610,7 @@ msgid "Create PHP Code"
msgstr "Създаване на PHP код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Опресняване"
@@ -2599,7 +2631,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "На място"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Профилиране"
@@ -2706,7 +2738,7 @@ msgstr "Щракване за превключване"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5161,8 +5193,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5349,7 +5381,7 @@ msgstr "Сортиране по ключ"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5413,7 +5445,7 @@ msgid "The row has been deleted"
msgstr "Редът беше изтрит"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Спиране"
@@ -5429,7 +5461,7 @@ msgstr "Показване на записи"
msgid "total"
msgstr "общо"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Заявката отне %01.4f секунди"
@@ -5498,7 +5530,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Състояние"
@@ -5839,8 +5871,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5933,28 +5965,28 @@ msgid "Display MIME types"
msgstr "Показване MIME типове"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Време на генериране"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Версия на сървъра"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Версия на PHP"
@@ -6147,49 +6179,49 @@ msgid "Generated by"
msgstr "Генерирано от"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL върна празен резултат (т.е. нула редове)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Липсващи данни за %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Само структурата"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6631,14 +6663,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Стойност"
@@ -6840,7 +6872,7 @@ msgid "Returns"
msgstr "Връща"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Време"
@@ -7273,12 +7305,12 @@ msgid "Synchronize"
msgstr "Синхронизиране"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Двоичен дневник"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Променливи"
@@ -7331,11 +7363,11 @@ msgstr "Изчистване"
msgid "Columns"
msgstr "Колони"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Отбелязване SQL заявката"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Всеки потребител да има достъп до тази белязка"
@@ -7437,8 +7469,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
-"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
-"s."
+"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
+"%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -7737,7 +7769,7 @@ msgstr "Версия на протокола"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Потребител"
@@ -8119,8 +8151,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %"
-"sскрипта за настройки%s."
+"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез "
+"%sскрипта за настройки%s."
#: prefs_manage.php:300
msgid "Save to browser's storage"
@@ -8160,17 +8192,17 @@ msgstr "Файлът не съществува"
msgid "Select binary log to view"
msgstr "Изберете двоичен дневник за преглед"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Файлове"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Съкращаване на показаните заявки"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Показване на пълните заявки"
@@ -8564,8 +8596,8 @@ msgstr "Изтриване на БД, които имат имена като т
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
@@ -8691,7 +8723,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8830,130 +8862,130 @@ msgstr ""
"Този сървър не е настроен като подчинен в репликация. Желаете ли да го настроите?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Нишка %s беше успешно спряна."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Буфер за заявки"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Нишки"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Временни данни"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Забавени вмъквания"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Буфер за ключове"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Сортиране"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Координатор на транзакциите"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Показване на отворените теблици"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Изчистване на буфера за заявки"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Информация за състоянието на MySQL сървъра"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Всички променливи на състоянието"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh rate:"
msgid "Refresh rate: "
msgstr "Скорост на опресняване:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Съдържащ думата:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Само тревожни стойности"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Филтър по категория..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Само тревожни стойности"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr ""
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Тип на заявката"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функции"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -8968,130 +9000,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Network traffic since startup: %s"
msgid "Questions since startup: %s"
msgstr "Мрежови трафик от включването: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "на час"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "на минута"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "на секунда"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Заявление"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "№"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Мрежови трафик от включването: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Състояние на репликацията"
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Получени"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Изпратени"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "максимален брой едновременни връзки"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Неуспешни опити"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Прекъснати"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Команда"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Броят неуспешни опити за връзка към MySQL сървъра."
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9099,78 +9131,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Броят създадени от mysqld временни файлове."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Броят вмъкнати посредством INSERT DELAYED редове."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9178,7 +9210,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9186,42 +9218,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Брой заявки за обновяване на ред в таблица."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Брой заявки за вмъкване на ред в таблица."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9229,33 +9261,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9264,227 +9296,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Броят на заявки за запис в дневника."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Броят изтрити редове от InnoDB таблици."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Броят вмъкнати редове в InnoDB таблици."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Броят прочетени редове от InnoDB таблици."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Броят обновени редове в InnoDB таблици."
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Броят отворени файлове."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Броят отворени потоци (използва се главно за дневници)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Броят отворени таблици."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Количеството свободна памет за буфер за заявки."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Броят попадения в кеш."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Броят заявки добавени към буфера."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9492,99 +9524,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Броят заявки регистрирани в буфера."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Общият брой блокове в буфера за заявки."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Брой временни таблици отворени от подчинена SQL нишка."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Броят сортирани редове."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9592,18 +9624,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Брой текущо отворени връзки."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9611,67 +9643,67 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Броят на нишките, които не са спящи."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start row"
msgid "Start Monitor"
msgstr "Начален ред"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add parameter"
msgid "Add chart"
msgstr "Нов параметър"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Скорост на опресняване"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Колони в текство поле"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Обработка на грешки:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Стойност по подразбиране"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9680,7 +9712,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9688,7 +9720,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9700,7 +9732,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9709,110 +9741,100 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Използвани"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Изтриване БД"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Използвани"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "All status variables"
msgid "Status variable(s)"
msgstr "Всички променливи на състоянието"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Избор на таблици"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "You must provide a valid table name"
msgid "or type variable name:"
msgstr "Трябва да дадете име на таблица на тригера"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add trigger"
msgid "Add this series"
msgstr "Нов тригер"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Показване статистика"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Избор на страница"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тип на заявката"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d секунда"
msgstr[1] "%d секунди"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10223,34 +10245,34 @@ msgstr "Ключът трябва да съдържа букви, цифри [em
msgid "Browse foreign values"
msgstr "Разглеждане на външни стойности"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Показване като PHP-код"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Валидиран SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем с индексите на таблица `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Етикет"
@@ -10990,9 +11012,9 @@ msgid "Current amount of Questions: %s"
msgstr "Текуща връзка"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Показване на SQL заявките"
#: po/advisory_rules.php:16
@@ -11014,7 +11036,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Изчистване на буфера за заявки"
#: po/advisory_rules.php:21
@@ -11201,12 +11223,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Използвано място"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11263,8 +11279,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11373,9 +11389,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Позволява създаването на временни таблици."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11393,13 +11409,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Позволява създаването на временни таблици."
#: po/advisory_rules.php:113
#, php-format
@@ -11431,8 +11449,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Няма процедури."
#: po/advisory_rules.php:121
#, fuzzy
@@ -11452,7 +11472,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11475,7 +11495,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11484,7 +11504,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11497,7 +11517,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11506,8 +11526,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11538,11 +11558,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s таблица"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11569,8 +11586,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s таблица"
#: po/advisory_rules.php:152
msgid ""
@@ -11611,8 +11631,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Размер на буфера за сортиране"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -11632,8 +11654,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Размер на буфера за сортиране"
#: po/advisory_rules.php:168
#, php-format
@@ -11641,7 +11665,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11661,7 +11685,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Създаване таблица"
#: po/advisory_rules.php:176
@@ -11680,10 +11704,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Показване на отворените теблици"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Формат на импортирания файл"
#: po/advisory_rules.php:181
msgid ""
@@ -11706,7 +11730,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Формат на импортирания файл"
#: po/advisory_rules.php:186
@@ -11749,7 +11773,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Буфер за ключове"
#: po/advisory_rules.php:201
@@ -11767,8 +11791,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Проследяването е неактивно."
#: po/advisory_rules.php:206
#, fuzzy
@@ -11826,10 +11852,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Конекции"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "максимален брой едновременни връзки"
#: po/advisory_rules.php:221
msgid ""
@@ -11853,7 +11879,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "максимален брой едновременни връзки"
#: po/advisory_rules.php:226
@@ -11876,7 +11902,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "максимален брой едновременни връзки"
#: po/advisory_rules.php:231
@@ -11890,8 +11916,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Формат на импортирания файл"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -11912,7 +11940,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Формат на импортирания файл"
#: po/advisory_rules.php:243
@@ -11939,8 +11967,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Log buffer size"
+msgid "InnoDB log size"
+msgstr "Размер на буфера на дневника"
#: po/advisory_rules.php:251
msgid ""
@@ -12050,6 +12080,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Използвано място"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Показване на отворените теблици"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Конекции"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "максимален брой едновременни връзки"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Използвани"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Използвани"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/bn.po b/po/bn.po
index b42ac84346..8e9170cf33 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন \n"
"Language-Team: bangla \n"
+"Language: bn\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "সবগুলো দেখাও"
@@ -47,7 +47,7 @@ msgstr "খুঁজুন"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "বর্ণনা"
@@ -199,7 +199,7 @@ msgstr "সংযুক্তি হবে"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -210,12 +210,12 @@ msgstr "মন্তব্যসমূহ"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "না"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -231,7 +231,7 @@ msgstr "না"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -362,7 +362,7 @@ msgstr "Relational schema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -635,8 +635,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -646,7 +646,7 @@ msgstr "View"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replication"
@@ -688,7 +688,7 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
@@ -756,10 +756,10 @@ msgstr "টেবিল পরীক্ষা কর"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -781,7 +781,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "অবস্থা"
@@ -884,11 +884,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -928,7 +928,7 @@ msgstr "বুকমার্কটি মুছে ফেলা হয়েছে
msgid "Showing bookmark"
msgstr "বুকমার্ক দেখান"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "বুকমার্ক %s তৈরী করা হয়েছে"
@@ -979,15 +979,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "আপনি কি সত্যি চান?"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
@@ -1076,12 +1076,12 @@ msgstr "Reload privileges"
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1089,17 +1089,17 @@ msgstr ""
msgid "Edit"
msgstr "সম্পাদনা কর"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Server Choice"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL query"
@@ -1111,13 +1111,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "মোট"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1149,7 +1149,7 @@ msgstr "Server Choice"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processes"
@@ -1169,170 +1169,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Row Statistics"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Query cache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Query cache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Query cache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "মেগাবাইট"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "কিলোবাইট"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "মোট"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "মোট"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "ফ্রী পাতাসমূহ"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "গৃহীত"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "সংযোগসমূহ"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "পারসিয়ান"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Traffic"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "General relation features"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "ডাটাবেজ রিনেম কর"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "কোনটিই নয়"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1340,385 +1372,385 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "বন্ধ করা হয়েছে"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "General relation features"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "General relation features"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Report title"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "কোন ডাটাবেজ নাই"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "ক্ষেত্রসমূহ"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "ক্ষেত্রসমূহ"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "The number of sorted rows."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "মোট"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "লোকাল"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "ডাটাবেজ রিনেম কর"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "ইম্পোর্ট কর"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Update Query"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "বর্ণনা"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "বর্ণনা"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "লোকাল"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Processes"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ঠিক আছে"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "ডাটাবেজ রিনেম কর"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "ডাটাবেজ রিনেম কর"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "ডাটাবেজ কপি করঃ"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Charset"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "একটি নতুন পাতা তৈরী কর"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "টেবিল ব্যাবহারকারী"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "ইন্ডেস্ক সমূহ"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "খুঁজুন"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL query"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL query"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "ব্রাউজ করুন"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s মুছে ফেলা হচ্ছে"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL query"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL query"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "No rows selected"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Change"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1726,110 +1758,110 @@ msgstr ""
msgid "Save"
msgstr "সেভ করুন"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL query"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL query"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s ক্ষেত্রসমূহ যোগ কর"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "পাসওয়ার্ড তৈরী কর"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "তৈরী কর"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "পাসওয়ার্ড পরিবর্তন কর"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "সোমবার"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1837,30 +1869,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Server version"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "কোন ডাটাবেজ নাই"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "ডাটা"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "পূর্ববর্তী"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1868,96 +1900,96 @@ msgid "Next"
msgstr "পরবর্তী"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "মোট"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "বাইনারী"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "মার্চ"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "এপ্রিল"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "মে"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "জুন"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "জুলাই"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "আগস্ট"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "অক্টোবর"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "জানুয়ারী"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "ফেব্রুয়ারী"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "মার্চ"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "এপ্রিল"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1965,78 +1997,78 @@ msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "জুলাই"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "আগস্ট"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "সেপ্টেমবর"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "অক্টোবর"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "নভেম্বর"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "ডিসেম্বর"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "রবিবার"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "সোমবার"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "মঙ্গলবার"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "শুক্রবার"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2044,100 +2076,100 @@ msgid "Sun"
msgstr "রবিবার"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "সোমবার"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "মঙ্গলবার"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "বুধবার"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "বৃহস্পতিবার"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "শুক্রবার"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "শনিবার"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "রবিবার"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "সোমবার"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "মঙ্গলবার"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "বুধবার"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "বৃহস্পতিবার"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "শুক্রবার"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "শনিবার"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2398,8 +2430,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -2541,7 +2573,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "টেবিলসমূহ"
@@ -2625,7 +2657,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "সার্ভার"
@@ -2674,7 +2706,7 @@ msgid "Documentation"
msgstr "বর্ণনা"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL query"
@@ -2712,7 +2744,7 @@ msgid "Create PHP Code"
msgstr "PHP কোড তৈরী করুনCreate PHP Code"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Refresh"
@@ -2735,7 +2767,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ইঞ্জিনসমূহ"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2840,7 +2872,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5451,12 +5483,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5681,7 +5713,7 @@ msgstr "Sort by key"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5753,7 +5785,7 @@ msgid "The row has been deleted"
msgstr "সারিটি মুছে ফেলা হয়েছে"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Kill"
@@ -5769,7 +5801,7 @@ msgstr "Showing rows"
msgid "total"
msgstr "মোট"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
@@ -5845,7 +5877,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6205,8 +6237,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6326,28 +6358,28 @@ msgid "Display MIME types"
msgstr "Available MIME types"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "হোষ্ট"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "তৈরী করার জন্য সময়"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Server version"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Version"
@@ -6550,50 +6582,50 @@ msgid "Generated by"
msgstr "Generated by"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "কোন ডাটাবেজ নাই"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "কোন ডাটাবেজ নাই"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "শুধুই গঠনপ্রণালী"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7048,14 +7080,14 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "চলক"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "মান"
@@ -7271,7 +7303,7 @@ msgid "Returns"
msgstr "Table options"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "সময়"
@@ -7755,12 +7787,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "বাইনারী লগ"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "চলকসমূহ"
@@ -7818,11 +7850,11 @@ msgstr "ক্যালেন্ডার"
msgid "Columns"
msgstr "কলামের নাম"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "এই SQL query টি বুকমার্ক করুন"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
@@ -8288,7 +8320,7 @@ msgstr "Protocol version"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "User"
@@ -8756,18 +8788,18 @@ msgstr "The \"%s\" table doesn't exist!"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "ক্ষেত্রসমূহ"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -9161,13 +9193,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -9298,7 +9330,7 @@ msgstr "The privileges were reloaded successfully."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -9439,136 +9471,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে"
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Handler"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Threads"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Temporary data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Joins"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "সাজাঁন"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Refresh"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Do not change the password"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Show open tables"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Show open tables"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Query type"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "ফাংশনসমূহ"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9583,70 +9615,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per hour"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minute"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per second"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Statements"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "This MySQL server has been running for %s. It started up on %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Replication"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9654,47 +9686,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "গৃহীত"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Sent"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "বাদ দেওয়া হল"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "আইডি"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "নির্দেশ"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9704,16 +9736,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9725,11 +9757,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9737,7 +9769,7 @@ msgstr ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9745,7 +9777,7 @@ msgstr ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9753,23 +9785,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "The number of INSERT DELAYED rows written."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "The number of executed FLUSH statements."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "The number of internal COMMIT statements."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9779,7 +9811,7 @@ msgstr ""
"table with a given name. This is called discovery. Handler_discover "
"indicates the number of time tables have been discovered."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9789,7 +9821,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9797,7 +9829,7 @@ 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:1153
+#: server_status.php:1195
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 "
@@ -9807,7 +9839,7 @@ msgstr ""
"incremented if you are querying an index column with a range constraint or "
"if you are doing an index scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9815,7 +9847,7 @@ msgstr ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9827,7 +9859,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9839,36 +9871,36 @@ msgstr ""
"tables are not properly indexed or that your queries are not written to take "
"advantage of the indexes you have."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9878,7 +9910,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9890,11 +9922,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9902,7 +9934,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9910,11 +9942,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9922,7 +9954,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9936,55 +9968,55 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9992,35 +10024,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10028,51 +10060,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "The number of pages read."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "The number of pages written."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10080,7 +10112,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -10088,7 +10120,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -10098,11 +10130,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10112,15 +10144,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10130,17 +10162,17 @@ msgstr ""
"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."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10148,38 +10180,38 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10191,7 +10223,7 @@ msgstr ""
"cache size. The query cache uses a least recently used (LRU) strategy to "
"decide which queries to remove from the cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10199,19 +10231,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10219,11 +10251,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10231,7 +10263,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10239,15 +10271,15 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10255,11 +10287,11 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10267,13 +10299,13 @@ msgstr ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10283,23 +10315,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "The number of sorted rows."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10311,7 +10343,7 @@ msgstr ""
"should first optimize your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10321,11 +10353,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "The number of currently open connections."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10337,64 +10369,64 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "শনিবার"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "%s ক্ষেত্রসমূহ যোগ কর"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Refresh"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Add/Delete Field Columns"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10403,7 +10435,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10411,7 +10443,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10423,7 +10455,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Query type"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10533,7 +10555,7 @@ msgid_plural "%d seconds"
msgstr[0] "per second"
msgstr[1] "per second"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10950,37 +10972,37 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
#, fuzzy
msgid "Showing SQL query"
msgstr "Show Full Queries"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "লেবেল"
@@ -11772,8 +11794,8 @@ msgid "Current amount of Questions: %s"
msgstr "max. concurrent connections"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Show Full Queries"
#: po/advisory_rules.php:16
@@ -11795,7 +11817,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Flush query cache"
#: po/advisory_rules.php:21
@@ -11976,12 +11998,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Space usage"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12038,8 +12054,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12148,9 +12164,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12168,13 +12184,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:113
#, php-format
@@ -12206,8 +12224,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "টেবিল পরীক্ষা কর"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12226,7 +12245,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12249,7 +12268,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12258,7 +12277,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12271,7 +12290,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12280,8 +12299,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12312,10 +12331,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s table(s)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12342,8 +12359,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s table(s)"
#: po/advisory_rules.php:152
msgid ""
@@ -12384,8 +12403,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12405,8 +12426,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:168
#, php-format
@@ -12414,7 +12437,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12433,7 +12456,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "একটি নতুন পাতা তৈরী কর"
#: po/advisory_rules.php:176
@@ -12454,10 +12477,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Show open tables"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
#: po/advisory_rules.php:181
msgid ""
@@ -12480,7 +12503,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
#: po/advisory_rules.php:186
@@ -12527,7 +12550,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Key cache"
#: po/advisory_rules.php:201
@@ -12545,8 +12568,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Key cache"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12602,10 +12627,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "সংযোগসমূহ"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "max. concurrent connections"
#: po/advisory_rules.php:221
msgid ""
@@ -12629,7 +12654,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "max. concurrent connections"
#: po/advisory_rules.php:226
@@ -12652,7 +12677,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "max. concurrent connections"
#: po/advisory_rules.php:231
@@ -12666,8 +12691,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12688,7 +12715,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
#: po/advisory_rules.php:243
@@ -12715,8 +12742,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool size"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12828,6 +12857,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Space usage"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Show open tables"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "সংযোগসমূহ"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "max. concurrent connections"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "ব্যাবহার"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "ব্যাবহার"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/br.po b/po/br.po
index 4d1ed4a8a4..ceada49330 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,18 +7,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-10 22:33+0200\n"
"Last-Translator: Fulup \n"
"Language-Team: LANGUAGE \n"
+"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Diskouez pep tra"
@@ -51,7 +51,7 @@ msgstr "Klask"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -92,7 +92,7 @@ msgstr "Anv ar meneger"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Deskrivadur"
@@ -205,7 +205,7 @@ msgstr "Liammet ouzh"
msgid "Comments"
msgstr "Evezhiadennoù"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -216,12 +216,12 @@ msgstr "Evezhiadennoù"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ket"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -237,7 +237,7 @@ msgstr "Ket"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -360,7 +360,7 @@ msgstr "Embann pe ezporzhiañ ur chema kar"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -617,11 +617,11 @@ msgstr "N'eo ket oberiant an heuliañ."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
-"steulioù titouriñ%s."
+"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
+"%steulioù titouriñ%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -630,7 +630,7 @@ msgstr "Gwelet"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Eilañ"
@@ -672,7 +672,7 @@ msgstr "Askañ an taolennoù gant dilerc'hioù"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ezporzhiañ"
@@ -734,10 +734,10 @@ msgstr "Taolennoù heuliet-pizh"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -757,7 +757,7 @@ msgstr "Hizivaet"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Statud"
@@ -856,11 +856,11 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %"
-"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
+"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an "
+"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -902,7 +902,7 @@ msgstr "Diverket eo bet ar sined."
msgid "Showing bookmark"
msgstr "O tiskouez ar sined"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Krouet eo bet ar sined %s"
@@ -955,15 +955,15 @@ msgstr "Klikañ evit diuzañ"
msgid "Click to unselect"
msgstr "Klikañ evit diziuzañ"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'"
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ha sur oc'h e fell deoc'h "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !"
@@ -1040,12 +1040,12 @@ msgstr "Oc'h adkargañ an dreistgwirioù"
msgid "Removing Selected Users"
msgstr "O lemel kuit an implijerien diuzet"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Serriñ"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1053,15 +1053,15 @@ msgstr "Serriñ"
msgid "Edit"
msgstr "Kemmañ"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Grafik an tremenerezh evel m'emañ diouzhtu"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Grafik ar rekedoù evel m'emaint diouzhtu"
@@ -1072,13 +1072,13 @@ msgstr "Roadennoù stadegel"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Hollad"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Udb all"
@@ -1108,7 +1108,7 @@ msgstr "Tremenerezh war ar servijer (e Kio)"
msgid "Connections since last refresh"
msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Argerzhioù"
@@ -1126,154 +1126,182 @@ msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ"
msgid "Questions (executed statements by the server)"
msgstr "Goulennoù (lavarennoù sevenet gant ar servijer)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Stadegoù war ar rekedoù"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Dibosupl lenn ar restr keluniañ"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Query cache efficiency"
+msgstr "N'eo ket oberiant an heuliañ."
+
+#: js/messages.php:97 po/advisory_rules.php:70
+msgid "Query cache usage"
+msgstr ""
+
+#: js/messages.php:98
+msgid "Query cache used"
+msgstr ""
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Implij CPU ar reizhiad"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Memor reizhiad"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Takad eskemm reizhiad (swap)"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "Kio"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Karg keitat"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Memor hollek"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Memor krubuilh"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Memor skurzer"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Memor vak"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Memor implijet"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Takad eskemm klok"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Takad eskemm krubuilhet"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Takad eskemm implijet"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Takad eskemm vak"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Oktedoù kaset"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Oktedoù resevet"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Kevreadennoù"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Goulennoù"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Tremenerezh"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Arventennoù"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Dilemel ar grafik"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Kemmañ an titl hag an tikedennoù"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Ouzhpennañ ur grafik d'ar gael"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Hini"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Adkregiñ gant an evezhiañ"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Paouez gant an evezhiañ"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "Gweredekaet eo general_log ha slow_query_log."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "Gweredekaet eo general_log."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "Gweredekaet eo slow_query_log."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "Diweredekaet eo general_log ha slow_query_log."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "N'eo ket bet lakaet log_output da TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "Lakaet eo bet log_output da TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1284,356 +1312,356 @@ msgstr ""
"bad pelloc'h eget %d eilenn. Erbedet eo reizhañ long_query_time war 0-2 "
"eilenn, hervez ho reizhiad."
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, php-format
msgid "Set log_output to %s"
msgstr ""
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enable Ajax"
msgid "Enable %s"
msgstr "Gweredekaat Ajax"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Diweredekaet"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Changes tracking"
msgid "Change settings"
msgstr "Heuliañ ar c'hemmoù"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "Other core settings"
msgid "Current settings"
msgstr "Arventennoù pouezus all"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr ""
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Mont d'an diaz roadennoù"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Niver a linennoù da ensoc'hañ"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Hollad"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "O kargañ"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload Database"
msgid "Reload page"
msgstr "Adkargañ an diaz roadennoù"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Enporzhiañ"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Hizivaat ar reked"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Teuliadur"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Dilesadur"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Nullañ"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "O kargañ"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "O plediñ gant ar reked"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Fazi en ur blediñ gant ar reked"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Diverkañ ar bann"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Ouzhpennañ un alc'hwez kentidik"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Mat eo"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Oc'h adenvel an diaz roadennoù"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Adkargañ an diaz roadennoù"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Oc'h eilañ an diaz roadennoù"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "O cheñch ar strobad arouezennoù"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Ur bann a rank bezañ en daolenn, da nebeutañ"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Krouiñ un daolenn"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Ensoc'hañ un daolenn"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Kuzhat menegerioù"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Diskouez menegerioù"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "O klask"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Kuzhat disoc'hoù an enklask"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Diskouez disoc'hoù an enklask"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "O furchal"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "O tiverkañ"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Kuzhat ar voest rekedoù SQL"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Diskouez ar voest rekedoù SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "N'eus bet diuzet linenn ebet"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Kemmañ"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Pad seveniñ hirañ"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1641,42 +1669,42 @@ msgstr "Pad seveniñ hirañ"
msgid "Save"
msgstr "Enrollañ"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Kuzhat an dezverkoù klask"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Diskouez an dezverkoù enklask"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Na ober van"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Add columns"
msgstr "Ouzhpennañ/Diverkañ bannoù"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Diuzit an alc'hwez daveet"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Diuzit an alc'hwez estren"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Dibab ar bann da ziskouez"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1684,59 +1712,59 @@ 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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Ouzhpennañ un dibarzh evit ar bann "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Genel ur ger-tremen"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genel"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Cheñch ger-tremen"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Muioc'h"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1746,27 +1774,27 @@ msgstr ""
"hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", stumm stabil diwezhañ"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "hizivaet"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Graet"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Kent"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1774,149 +1802,149 @@ msgid "Next"
msgstr "War-lerc'h"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Hiziv"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Genver"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "C'hwevrer"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Meurzh"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Ebrel"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mae"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Mezheven"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Gouere"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Eost"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Gwengolo"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Here"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Du"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Kerzu"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "C'hwe"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Meu"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mae"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Mezh"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Goue"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Eost"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Gwen"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Here"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Du"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Kzu"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Sul"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Meurzh"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Merc'her"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Yaou"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Gwener"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sadorn"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1924,84 +1952,84 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Meu"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Yaou"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "L"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Mz"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Mc"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Y"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "G"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Sizh."
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Eur"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Munut"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Eilenn"
@@ -2257,11 +2285,11 @@ msgstr "Degemer mat e %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %"
-"1$sskript kefluniañ%2$s da sevel unan."
+"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
+"%1$sskript kefluniañ%2$s da sevel unan."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2404,7 +2432,7 @@ msgstr "kenrannet"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Taolennoù"
@@ -2483,7 +2511,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Servijer"
@@ -2532,7 +2560,7 @@ msgid "Documentation"
msgstr "Teuliadur"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Reked SQL"
@@ -2570,7 +2598,7 @@ msgid "Create PHP Code"
msgstr "Krouiñ kod PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Freskaat"
@@ -2591,7 +2619,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Enlinenn"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "O profilañ"
@@ -2696,7 +2724,7 @@ msgstr "Klikañ evit gwintañ"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5187,8 +5215,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5375,7 +5403,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5439,7 +5467,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5455,7 +5483,7 @@ msgstr ""
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5524,7 +5552,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5865,8 +5893,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5959,28 +5987,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr ""
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6169,49 +6197,49 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Roadennoù a vank evit %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Ar framm hepken"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6651,14 +6679,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr ""
@@ -6870,7 +6898,7 @@ msgid "Returns"
msgstr ""
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr ""
@@ -7315,12 +7343,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7373,11 +7401,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7717,7 +7745,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr ""
@@ -8126,17 +8154,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8514,8 +8542,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8635,7 +8663,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8768,126 +8796,126 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Freskaat"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr ""
-#: server_status.php:758
+#: server_status.php:800
msgid "Run analyzer"
msgstr ""
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Connections"
msgid "Instructions"
msgstr "Kevreadennoù"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -8902,129 +8930,129 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Personelaat ar bajenn deraouiñ"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Urzhiad"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9032,78 +9060,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9111,7 +9139,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9119,42 +9147,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9162,33 +9190,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9197,227 +9225,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9425,99 +9453,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9525,18 +9553,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9544,63 +9572,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Freskaat"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "Bannoù evit an takadoù skrid CHAR"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Adlakaat an talvoud dre ziouer"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9609,7 +9637,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9617,7 +9645,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9629,7 +9657,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9638,100 +9666,94 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr ""
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Dilemel ar grafik"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr ""
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Foreign Key"
msgid "Select series:"
msgstr "Diuzit an alc'hwez estren"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Anv taolenn direizh"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add user"
msgid "Add this series"
msgstr "Ouzhpennañ un implijer"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Query statistics"
msgid "Log statistics"
msgstr "Stadegoù war ar rekedoù"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10138,34 +10160,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -10898,9 +10920,9 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Rekedoù SQL"
#: po/advisory_rules.php:16
@@ -10922,7 +10944,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show query box"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Diskouez ar voest rekedoù SQL"
#: po/advisory_rules.php:21
@@ -11103,10 +11125,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-msgid "memcached usage"
-msgstr ""
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11161,8 +11179,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11263,8 +11281,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11280,12 +11297,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11318,7 +11335,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11337,7 +11354,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11360,7 +11377,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11369,7 +11386,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11382,7 +11399,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11391,8 +11408,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11423,11 +11440,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s daolenn"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11454,8 +11468,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s daolenn"
#: po/advisory_rules.php:152
msgid ""
@@ -11494,7 +11511,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11515,7 +11532,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11524,7 +11541,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11544,7 +11561,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create Table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Krouiñ un daolenn"
#: po/advisory_rules.php:176
@@ -11563,10 +11580,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Could not open file: %s"
-msgid "% open files"
-msgstr "N'eus ket bet gallet digeriñ ar restr : %s"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Furmad ar restr enporzhiañ"
#: po/advisory_rules.php:181
msgid ""
@@ -11589,7 +11606,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Furmad ar restr enporzhiañ"
#: po/advisory_rules.php:186
@@ -11628,7 +11645,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11646,8 +11663,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "N'eo ket oberiant an heuliañ."
#: po/advisory_rules.php:206
#, fuzzy
@@ -11703,10 +11722,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Kevreadennoù"
+#, fuzzy
+#| msgid "Force SSL connection"
+msgid "Percentage of used connections"
+msgstr "Rediañ ar c'hevreadennoù SSL"
#: po/advisory_rules.php:221
msgid ""
@@ -11730,7 +11749,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Force SSL connection"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Rediañ ar c'hevreadennoù SSL"
#: po/advisory_rules.php:226
@@ -11751,8 +11770,10 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
-msgstr ""
+#, fuzzy
+#| msgid "Force SSL connection"
+msgid "Rate of aborted connections"
+msgstr "Rediañ ar c'hevreadennoù SSL"
#: po/advisory_rules.php:231
msgid "Too many connections are aborted"
@@ -11765,8 +11786,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Furmad ar restr enporzhiañ"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -11787,7 +11810,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Furmad ar restr enporzhiañ"
#: po/advisory_rules.php:243
@@ -11814,7 +11837,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -11921,6 +11944,14 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "N'eus ket bet gallet digeriñ ar restr : %s"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Kevreadennoù"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/bs.po b/po/bs.po
index 7aec4e5a85..8a17061dee 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Prikaži sve"
@@ -46,7 +46,7 @@ msgstr "Pretraživanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Opis"
@@ -200,7 +200,7 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Komentari"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ne"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -366,7 +366,7 @@ msgstr "Relaciona shema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -639,8 +639,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -650,7 +650,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Relacije"
@@ -693,7 +693,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
@@ -759,10 +759,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -783,7 +783,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -886,8 +886,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -923,7 +923,7 @@ msgstr "Obilježivač je upravo obrisan."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -970,15 +970,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1062,12 +1062,12 @@ msgstr "Globalne privilegije"
msgid "Removing Selected Users"
msgstr "Ukloni izabrane korisnike"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1075,17 +1075,17 @@ msgstr ""
msgid "Edit"
msgstr "Promeni"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Izbor servera"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL upit"
@@ -1097,13 +1097,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Ukupno"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1135,7 +1135,7 @@ msgstr "Izbor servera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesi"
@@ -1155,165 +1155,192 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Statistike reda"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Vrsta upita"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Vrsta upita"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Vrsta upita"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Ukupno"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Ukupno"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Primljeno"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Konekcije"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Operacije"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Saobraćaj"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
msgid "Remove chart"
msgstr "Promjeni ime tabele u "
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "nema"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1321,381 +1348,381 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Onemogućeno"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Uvoz fajlova"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Baza ne postoji"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Broj redova po strani"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Ukupno"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokalni"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
msgid "Reload page"
msgstr "Promjeni ime tabele u "
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Izvoz"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ažuriraj upit"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentacija"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentacija"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokalni"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "U redu"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
msgid "Renaming Databases"
msgstr "Promjeni ime tabele u "
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
msgid "Reload Database"
msgstr "Promjeni ime tabele u "
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "Baza ne postoji"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Karakter set"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Napravi novu stranu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Koristi tabele"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Dodaj novo polje"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Prikaži mrežu"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Pretraživanje"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL upit"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL upit"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Pregled"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Brišem %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL upit"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL upit"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Promijeni"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1703,110 +1730,110 @@ msgstr ""
msgid "Save"
msgstr "Sačuvaj"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "Dodaj novo polje"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izaberi polja za prikaz"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Promeni lozinku"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Generirao"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1814,30 +1841,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "nema"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodna"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1845,96 +1872,96 @@ msgid "Next"
msgstr "Slijedeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "maj"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1942,78 +1969,78 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2021,100 +2048,100 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2366,8 +2393,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2506,7 +2533,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabele"
@@ -2585,7 +2612,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2634,7 +2661,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL upit"
@@ -2672,7 +2699,7 @@ msgid "Create PHP Code"
msgstr "Napravi PHP kod"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2693,7 +2720,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2800,7 +2827,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5370,8 +5397,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5582,7 +5609,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5654,7 +5681,7 @@ msgid "The row has been deleted"
msgstr "Red je obrisan"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Obustavi"
@@ -5670,7 +5697,7 @@ msgstr "Prikaz zapisa"
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
@@ -5744,7 +5771,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6089,8 +6116,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6203,28 +6230,28 @@ msgid "Display MIME types"
msgstr "Dostupni MIME-tipovi"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Vrijeme kreiranja"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Verzija servera"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "verzija PHP-a"
@@ -6423,49 +6450,49 @@ msgid "Generated by"
msgstr "Generirao"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Baza ne postoji"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Samo struktura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6920,14 +6947,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Promjenljiva"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Vrijednost"
@@ -7144,7 +7171,7 @@ msgid "Returns"
msgstr "Opcije tabele"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Vrijeme"
@@ -7621,13 +7648,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Binarni"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Promjenljive"
@@ -7684,11 +7711,11 @@ msgstr ""
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Obilježi SQL-upit"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -8120,7 +8147,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Korisnik"
@@ -8576,18 +8603,18 @@ msgstr "Tabela \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Polja"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Prikaži skraćene upite"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Prikaži kompletne upite"
@@ -8985,8 +9012,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@@ -9115,7 +9142,7 @@ msgstr "Privilegije su uspešno ponovo učitane."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9254,136 +9281,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Proces %s je uspješno prekinut."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Vrsta upita"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Prošireni INSERT"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Prikaži tabele"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informacije o toku rada"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "Generirao"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemoj da mijenjaš lozinku"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Prikaži tabele"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Prikaži tabele"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vrsta upita"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funkcija"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9398,130 +9425,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "na sat"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "u minuti"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "u sekundi"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Ime"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Naredba"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9529,78 +9556,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9608,7 +9635,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9616,42 +9643,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9659,33 +9686,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9694,227 +9721,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9922,99 +9949,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10022,18 +10049,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10041,64 +10068,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sub"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Dodaj novo polje"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Generirao"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/obriši kolonu"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10107,7 +10134,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10115,7 +10142,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10127,7 +10154,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10136,98 +10163,87 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Zauzeće"
+msgid "Preset chart"
+msgstr "Promjeni ime tabele u "
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Zauzeće"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Izaberi tabele"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Dodaj novog korisnika"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL upit"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Statistike reda"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Izaberi sve"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta upita"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10235,7 +10251,7 @@ msgid_plural "%d seconds"
msgstr[0] "u sekundi"
msgstr[1] "u sekundi"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10650,36 +10666,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Pregledaj strane vrijednosti"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Provjeri SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Naziv"
@@ -11472,8 +11488,8 @@ msgid "Current amount of Questions: %s"
msgstr "Konekcije"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Prikaži kompletne upite"
#: po/advisory_rules.php:16
@@ -11494,7 +11510,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL upit"
#: po/advisory_rules.php:21
@@ -11670,12 +11686,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Zauzeće"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11731,8 +11741,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11836,9 +11846,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Dozvoljava kreiranje privremenih tabela.."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11856,13 +11866,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Dozvoljava kreiranje privremenih tabela.."
#: po/advisory_rules.php:113
#, php-format
@@ -11894,7 +11906,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11913,7 +11925,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11936,7 +11948,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11945,7 +11957,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11958,7 +11970,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11967,8 +11979,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11999,10 +12011,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tabela"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12029,8 +12039,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tabela"
#: po/advisory_rules.php:152
msgid ""
@@ -12069,7 +12081,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12090,7 +12102,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12099,7 +12111,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12118,7 +12130,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Napravi novu stranu"
#: po/advisory_rules.php:176
@@ -12137,9 +12149,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Prikaži tabele"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Karakter set datoteke:"
#: po/advisory_rules.php:181
msgid ""
@@ -12161,7 +12173,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Karakter set datoteke:"
#: po/advisory_rules.php:186
@@ -12203,7 +12215,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Vrsta upita"
#: po/advisory_rules.php:201
@@ -12221,8 +12233,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "Vrsta upita"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12276,9 +12289,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Konekcije"
#: po/advisory_rules.php:221
@@ -12303,7 +12316,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Konekcije"
#: po/advisory_rules.php:226
@@ -12326,7 +12339,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Konekcije"
#: po/advisory_rules.php:231
@@ -12340,8 +12353,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Sadržaj"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12362,7 +12377,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Sadržaj"
#: po/advisory_rules.php:243
@@ -12387,7 +12402,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12494,6 +12509,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Zauzeće"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Prikaži tabele"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Konekcije"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Konekcije"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Zauzeće"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Zauzeće"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ca.po b/po/ca.po
index 52d56e8332..e87139d3e5 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro \n"
"Language-Team: catalan \n"
+"Language: ca\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Mostra tot"
@@ -47,7 +47,7 @@ msgstr "Cerca"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Nom de clau"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Descripció"
@@ -201,7 +201,7 @@ msgstr "Enllaços a"
msgid "Comments"
msgstr "Comentaris"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Comentaris"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "No"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Edita o exporta l'esquema relacional"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -617,8 +617,8 @@ msgstr "El seguiment no està actiu."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@@ -629,7 +629,7 @@ msgstr "Vista"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replicació"
@@ -671,7 +671,7 @@ msgstr "Comprova taules desfragmentades"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporta"
@@ -739,10 +739,10 @@ msgstr "Taules seguides"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -762,7 +762,7 @@ msgstr "Actualitzat"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Estat"
@@ -861,11 +861,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
-"sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
+"%sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -906,7 +906,7 @@ msgstr "S'ha esborrat la consulta desada."
msgid "Showing bookmark"
msgstr "Mostrant consultes desades"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "%s creat com a Consulta desada"
@@ -959,15 +959,15 @@ msgstr "Clica per seleccionar"
msgid "Click to unselect"
msgstr "Clica per deseleccionar"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Instrucció \"DROP DATABASE\" desactivada."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Realment vols fer?"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Ets a punt de DESTRUIR completament una base de dades!"
@@ -1052,12 +1052,12 @@ msgstr "Recarrega els permisos"
msgid "Removing Selected Users"
msgstr "Treu els usuaris triats"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Tanca"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1065,17 +1065,17 @@ msgstr "Tanca"
msgid "Edit"
msgstr "Edita"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Elecció de Servidor"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
@@ -1088,13 +1088,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1126,7 +1126,7 @@ msgstr "Elecció de Servidor"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processos"
@@ -1146,170 +1146,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Consulta d'estadístiques"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "No es pot desar la configuració"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Memòria cau de consultes"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Memòria cau de consultes"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Memòria cau de consultes"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Comptador de l'arxiu de registre"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Grup de memòries intermitges"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Pàgines lliures"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Rebut"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Connexions"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versions"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Tràfic"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Configuració"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Elimina la base de dades"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Alinia a la graella"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Res"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1317,378 +1349,378 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
msgstr "Desa la sortida com a arxiu"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Activat"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Desactivat"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "Gestiona els teus paràmetres"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "Més paràmetres"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title:"
msgid "Chart Title"
msgstr "Títol de llistat:"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Diferència"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Vés a la base de dades"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filtre"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtre"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Nombre de files a inserir"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Total"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Carregar"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Recarrega"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importa"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Actualitza consulta"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentació"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Detalls..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Autenticació"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Cancel.lar"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Carregar"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Petició de procés"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Error a la petició de procés"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Eliminació de columna"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Afegir clau principal"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Correcte"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Reanomenar bases de dades"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Recarregar base de dades"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Copiant base de dades"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Canvi de Joc de Caràcters"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "La taula ha de tenir al menys una columna"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Crea una taula"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Usa Taules"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "Afegir índex"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Mostra graella"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Cercar"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
msgstr "Amaga el criteri de cerca"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
msgstr "Mostrar criteri de cerca"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Navega"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Esborrant %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Amagar quadre de consultes"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Mostrar quadre de consultes"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "No s'han triat arxius"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Canvi"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Màxim temps d'execució"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1696,102 +1728,102 @@ msgstr "Màxim temps d'execució"
msgid "Save"
msgstr "Desa"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Amaga el criteri de cerca"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Mostrar criteri de cerca"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Afegeix columna(es)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Tria la clau referenciada"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Tria una clau externa"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Tria la clau principal o una clau única"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Tria la columna a mostrar"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Afegeix una opció per a la columna"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Clica per seleccionar"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Genera una contrasenya"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Canvi de contrasenya"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Més"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1801,29 +1833,29 @@ msgstr ""
"actualitzar-la. La nova versió és la %s, alliberada el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", darrera versió estable:"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Vés a la base de dades"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Fet"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1831,149 +1863,149 @@ msgid "Next"
msgstr "Següent"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Avui"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Gener"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Febrer"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Març"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Abril"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Maig"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Juny"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Juliol"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Agost"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Setembre"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Octubre"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Novembre"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Desembre"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Des"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Diumenge"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Dilluns"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Dimarts"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Dimecres"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Dijous"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Divendres"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Dissabte"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1981,84 +2013,84 @@ msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Se"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Segon"
@@ -2325,8 +2357,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@@ -2473,7 +2505,7 @@ msgstr "compartit"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Taules"
@@ -2553,7 +2585,7 @@ msgstr ""
"Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Servidor"
@@ -2602,7 +2634,7 @@ msgid "Documentation"
msgstr "Documentació"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Consulta SQL"
@@ -2640,7 +2672,7 @@ msgid "Create PHP Code"
msgstr "Crea codi PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Refresca"
@@ -2661,7 +2693,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En línia"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Perfils"
@@ -2770,7 +2802,7 @@ msgstr "Clica per seleccionar"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5437,12 +5469,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
-"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
+"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
+"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:270
@@ -5651,7 +5683,7 @@ msgstr "Classifica per la clau"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5715,7 +5747,7 @@ msgid "The row has been deleted"
msgstr "S'ha esborrat la fila"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Finalitzar"
@@ -5731,7 +5763,7 @@ msgstr "Mostrant registres"
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tarda %01.4f seg"
@@ -5805,7 +5837,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Grup de memòries intermitges"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Estat InnoDB"
@@ -6210,8 +6242,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@@ -6306,28 +6338,28 @@ msgid "Display MIME types"
msgstr "Mostra tipus MIME"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Temps de generació"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versió del servidor"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versió de PHP "
@@ -6544,55 +6576,55 @@ msgid "Generated by"
msgstr "Generat per"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç "
"\"Opcions\""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Vés a la base de dades"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Falten dades a %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Vés a la taula"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Només l'estructura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Vés a la vista"
@@ -7057,14 +7089,14 @@ msgid "Slave status"
msgstr "Estat de l'esclau"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valor"
@@ -7288,7 +7320,7 @@ msgid "Returns"
msgstr "Tipus de retorn"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Temps"
@@ -7775,12 +7807,12 @@ msgid "Synchronize"
msgstr "Sincronitza"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Registre binari"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variables"
@@ -7833,11 +7865,11 @@ msgstr "Neteja"
msgid "Columns"
msgstr "Columnes"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Desa aquesta consulta SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
@@ -7939,8 +7971,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
-"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
-"sdocumentació%s."
+"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
+"%sdocumentació%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8254,7 +8286,7 @@ msgstr "Versió del protocol"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Usuari"
@@ -8702,17 +8734,17 @@ msgstr "L'arxiu no existeix"
msgid "Select binary log to view"
msgstr "Tria el registre binari per veure"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Arxius"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Talla les consultes mostrades"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Mostra Consultes completes"
@@ -9104,8 +9136,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@@ -9238,7 +9270,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Mostra l'estat del mestre -show master status-"
@@ -9387,137 +9419,137 @@ msgstr ""
"Aquest servidor no està configurat com a esclau en un procés de replicació. "
"Vols configurar-lo ?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Fil %s cancel.lat correctament."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Gestor"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Memòria cau de consultes"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Fils"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Dades temporals"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Insercions demorades"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Memòria cau de claus"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Unions"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Classificant"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Coordinador de transaccions"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Sincronitza (tanca) totes les taules"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Mostra taules obertes"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Mostra servidors esclaus"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Mostra l'estat d'esclaus"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Buida la memòria cau de consultes"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informació d'execució"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Veure la taula d'estat de l'esclau"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Refresca"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "No canviïs la contrasenya"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Mostra taules obertes"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Mostra taules obertes"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Enllaços relacionats"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipus de consulta"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Informació"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9532,46 +9564,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Configura la pàgina d'inici"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per hora"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minut"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per segon"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Sentències"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9579,19 +9611,19 @@ msgstr ""
"Aquest servidor MySQL treballa com a mestre i esclau en un "
"procés de replicació ."
-#: server_status.php:911
+#: server_status.php:953
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:913
+#: server_status.php:955
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:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9599,11 +9631,11 @@ msgstr ""
"Per obtenir més informació sobre l'estat de replicació al servidor, visita "
"la secció de replicació."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Estat de la replicació"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9611,47 +9643,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Rebut"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Enviat"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. connexions a la vegada"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Intents erronis"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Avortat"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Ordre"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "No es pot connectar al servidor MySQL"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9661,17 +9693,17 @@ msgstr ""
"però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal "
"per desar elements de la transacció."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9683,11 +9715,11 @@ msgstr ""
"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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Arxius temporals creats per mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9695,7 +9727,7 @@ msgstr ""
"El nombre de taules temporals creades en memòria per el servidor mentre "
"executa instruccions."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9703,7 +9735,7 @@ msgstr ""
"El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat "
"quelcom error (possile clau duplicada)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9711,23 +9743,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "El nombre de files escrites amb INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "El nombre d'instruccions FLUSH executades."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "El nombre d'instruccions COMMIT internes."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9737,7 +9769,7 @@ msgstr ""
"coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. "
"Handler_discover indica el nombre de taules descobertes."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9747,7 +9779,7 @@ msgstr ""
"é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:1152
+#: server_status.php:1194
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."
@@ -9756,7 +9788,7 @@ msgstr ""
"és una bona indicació de que les consultes i taules estàn indexades "
"acuradament."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9766,7 +9798,7 @@ msgstr ""
"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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9775,7 +9807,7 @@ msgstr ""
"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... "
"DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9787,7 +9819,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9799,37 +9831,37 @@ msgstr ""
"taules no estàn indexades acuradament o bé les consultes no estàn fetes per "
"aprofitar les avantatges dels índexos definits."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "El nombre d'instruccions ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "El nombre de pàgines contenint dades (brutes o netes)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "El nombre de pàgines actualment brutes."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "El nombre de pàgines lliures."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9839,7 +9871,7 @@ msgstr ""
"pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o "
"esborrar per qualsevol altra raó."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9851,11 +9883,11 @@ msgstr ""
"Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Tamany total de la memòria cau, en pàgines."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9863,7 +9895,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9871,11 +9903,11 @@ msgstr ""
"El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB "
"fa una cerca secuencial a la taula sencera."
-#: server_status.php:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9883,7 +9915,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9897,55 +9929,55 @@ msgstr ""
"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:1172
+#: server_status.php:1214
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:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "El nombre d'operacions fsync() aproximades."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "El nombre actual d'operacions fsync() pendents."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "El nombre actual de lectures pendents."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "El nombre actual d'escritures pendents."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "La quantitat aproximada de dades llegides, en bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "El nombre total de dades llegides."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "El nombre total de dades escrites."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "La quantitat aproximada de dades escrites, en bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9953,35 +9985,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "El nombre de peticions d'escriptura al registre."
-#: server_status.php:1185
+#: server_status.php:1227
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:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Escriptures pendents a l'arxiu de registre."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "El nombre de bytes escrits a l'arxiu de registre."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "El nombre de pàgines creades."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9990,51 +10022,51 @@ msgstr ""
"comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment "
"a bytes."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "El nombre de pàgines llegides."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "El nombre de pàgines escrites."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "El nombre de bloquejos de files actualment en espera."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "El nombre de files esborrades de taules InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "El nombre de files afegides a taules InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "El nombre de files llegides de taules InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "El nombre de files actualitzades en taules InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10043,7 +10075,7 @@ msgstr ""
"però que encara no han estat actualitzades a disc. Es coneix com a "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10051,7 +10083,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -10060,11 +10092,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10074,16 +10106,16 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10094,17 +10126,17 @@ msgstr ""
"de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha "
"compilat cap consulta."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10112,39 +10144,39 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "El nombre d'arxius que estàn oberts."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "El nombre de taules que estàn obertes."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
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:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "El nombre d'encerts a memòria cau."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "El nombre de consultes afegides a la memòria cau."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10157,7 +10189,7 @@ msgstr ""
"l'estratègia menys recentment usada(least recently used - LRU) per decidir "
"quines consultes treure de la memòria cau."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10165,19 +10197,19 @@ 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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "El nombre de consultes registrades a la memòria cau."
-#: server_status.php:1224
+#: server_status.php:1266
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:1225
+#: server_status.php:1267
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:1226
+#: server_status.php:1268
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."
@@ -10185,12 +10217,12 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10199,7 +10231,7 @@ msgstr ""
"cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els "
"indexs de les taules.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10207,16 +10239,16 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10224,25 +10256,25 @@ msgstr ""
"Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació "
"de SQL ha recuperat transaccions."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10252,23 +10284,23 @@ msgstr ""
"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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "El nombre de classificacions fetes amb rangs."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "El nombre de files classificades."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "El nombre de classificacions fetes cercant la taula."
-#: server_status.php:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10281,7 +10313,7 @@ msgstr ""
"consultes, o també dividir la taula o taules en vàries o bé utilitzar la "
"replicació."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10291,11 +10323,11 @@ msgstr ""
"comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria "
"d'augmentar el valor de thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "El nombre de connexions obertes simultàniament."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10306,69 +10338,69 @@ msgstr ""
"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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "El nombre de fils que no estàn dormint."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "Files per a textareas"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "Afegir índex"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Refresca"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Columnes per a textareas"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Gestió d'errors:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Restaura el valor per defecte"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "Informació"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10377,7 +10409,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10385,7 +10417,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10397,7 +10429,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10406,105 +10438,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Ús"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Elimina la base de dades"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Ús"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Veure la taula d'estat de l'esclau"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Tria Taules"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Nom de taula incorrecte"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Afegir un nou servidor"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "Consultes SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Mostra estadístiques"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Selecciona la pàgina"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipus de consulta"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10512,7 +10534,7 @@ msgid_plural "%d seconds"
msgstr[0] "Segon"
msgstr[1] "Segon"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10902,8 +10924,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
-"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
+"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:290
@@ -10931,8 +10953,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
-"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
-"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin pot accedir al teu panel directament. Estableix el "
+"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:294
#, php-format
@@ -10977,34 +10999,34 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
msgid "Browse foreign values"
msgstr "Navega valors externs"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id de la fila inserida: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Mostrant com a codi PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Mostrant consulta SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL validat"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemes amb els indexs de la taula `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiqueta"
@@ -11788,9 +11810,9 @@ msgid "Current amount of Questions: %s"
msgstr "Connexió actual"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Mostra consultes SQL"
#: po/advisory_rules.php:16
@@ -11812,7 +11834,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Buida la memòria cau de consultes"
#: po/advisory_rules.php:21
@@ -11997,12 +12019,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Utilització d'espai"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12059,8 +12075,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12169,9 +12185,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permet crear taules temporals."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12189,13 +12205,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permet crear taules temporals."
#: po/advisory_rules.php:113
#, php-format
@@ -12227,8 +12245,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "No hi ha cap arxiu per pujar"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12248,7 +12268,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12271,7 +12291,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12280,7 +12300,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12293,7 +12313,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12302,8 +12322,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12334,11 +12354,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s taula"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12365,8 +12382,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s taula"
#: po/advisory_rules.php:152
msgid ""
@@ -12407,8 +12427,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Tamany de l'àrea de classificació"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12428,8 +12450,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Tamany de l'àrea de classificació"
#: po/advisory_rules.php:168
#, php-format
@@ -12437,7 +12461,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12457,7 +12481,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Crea una taula"
#: po/advisory_rules.php:176
@@ -12478,10 +12502,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Mostra taules obertes"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format de l'arxiu importat"
#: po/advisory_rules.php:181
msgid ""
@@ -12504,7 +12528,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format de l'arxiu importat"
#: po/advisory_rules.php:186
@@ -12551,7 +12575,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Memòria cau de claus"
#: po/advisory_rules.php:201
@@ -12569,8 +12593,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "El seguiment no està actiu."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12628,10 +12654,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Connexions"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Connexions persistents"
#: po/advisory_rules.php:221
msgid ""
@@ -12654,9 +12680,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Connexió comprimida"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Connexions persistents"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12678,7 +12704,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Connexions persistents"
#: po/advisory_rules.php:231
@@ -12692,8 +12718,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format de l'arxiu importat"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12714,7 +12742,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format de l'arxiu importat"
#: po/advisory_rules.php:243
@@ -12741,8 +12769,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Tamany de la memòria cau"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12854,6 +12884,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Utilització d'espai"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Mostra taules obertes"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Connexions"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Connexió comprimida"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Ús"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Ús"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Llibre d'Excel 97-2003 XLS"
diff --git a/po/cs.po b/po/cs.po
index 948987f335..4efe4ab8d5 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,18 +6,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-11 11:38+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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Zobrazit vše "
@@ -50,7 +50,7 @@ msgstr "Vyhledávání"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -91,7 +91,7 @@ msgstr "Název klíče"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Popis"
@@ -203,7 +203,7 @@ msgstr "Odkazuje na"
msgid "Comments"
msgstr "Komentáře"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -214,12 +214,12 @@ msgstr "Komentáře"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ne"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -235,7 +235,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -358,7 +358,7 @@ msgstr "Upravit nebo exportovat relační schéma"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -617,8 +617,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -629,7 +629,7 @@ msgstr "Pohled"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikace"
@@ -671,7 +671,7 @@ msgstr "Zaškrtnout neoptimální"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
@@ -733,10 +733,10 @@ msgstr "Sledované tabulky"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -756,7 +756,7 @@ msgstr "Aktualizováno"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Stav"
@@ -855,8 +855,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -900,7 +900,7 @@ msgstr "Položka byla smazána z oblíbených."
msgid "Showing bookmark"
msgstr "Zobrazuji oblíbený dotaz"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Vytvořen oblíbený dotaz %s"
@@ -952,15 +952,15 @@ msgstr "Klikněte pro vybrání"
msgid "Click to unselect"
msgstr "Klikněte pro zrušení výběru"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Příkaz „DROP DATABASE“ je vypnutý."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Opravdu si přejete vykonat příkaz "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte se ZRUŠIT celou databázi!"
@@ -1035,12 +1035,12 @@ msgstr "Načítám oprávnění"
msgid "Removing Selected Users"
msgstr "Odstraňuji vybrané uživatele"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Ukončit"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1048,15 +1048,15 @@ msgstr "Ukončit"
msgid "Edit"
msgstr "Upravit"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Živý graf provozu"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Živý graf připojení a procesů"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Živý graf dotazů"
@@ -1067,13 +1067,13 @@ msgstr "Statická data"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Celkem"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Ostatní"
@@ -1103,7 +1103,7 @@ msgstr "Síťový provoz (v KiB)"
msgid "Connections since last refresh"
msgstr "Spojení od posledního obnovaní"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesy"
@@ -1121,154 +1121,186 @@ msgstr "Dotazů od poslední aktualizace"
msgid "Questions (executed statements by the server)"
msgstr "Dotazy (příkazy spuštěné na serveru)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Statistika dotazů"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Nepodařilo se načíst konfigurační soubor"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Vyrovnávací paměť dotazů"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Využití CPU"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Operační paměť"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Odkládací oblast"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Průměrné zatížení"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Celková paměť"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Paměť cache"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Vyrovnávací paměť"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Volná paměť"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Využitá paměť"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Swap celkem"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Cachovaný swap"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Využitý swap"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Volný swap"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Odesláno bajtů"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Přijato bajtů"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Připojení"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Dotazy"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Provoz"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Nastavení"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Odstranit graf"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Upravit název a popisky"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Přidat graf do mřížky"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Prosím přidejte do série alespoň jednu hodnotu"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Žádná"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Obnovit monitor"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Přerušit monitor"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log a slow_query_log jsou povoleny."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log je povolen."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log je povolen."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log a general_log jsou zakázány."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output není nastaven na tabulku."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output je nastaven na tabulku."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1276,12 +1308,12 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr "long_query_time je nastaven na %d sekund."
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1289,30 +1321,30 @@ msgstr ""
"Budou provedeny následující změny, které budou platné do restartu serveru:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Zapnout %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Vypnout %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Nastavit long_query_time na %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1320,125 +1352,125 @@ msgstr ""
"Nemůžete změnit uvedené proměnné. Prosím přihlašte se jako root nebo "
"kontaktujte vašeho správce databáze."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Změnit nastavení"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Aktuální nastavení"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Název grafu"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Rozdíly"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Vyděleno %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Ze zánamu pomalých dotazů"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Z obecného zánamu dotazů"
-#: js/messages.php:157
+#: js/messages.php:164
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:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
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:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Přejít na tabulku se záznamem"
-#: js/messages.php:163
+#: js/messages.php:170
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."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filtry"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtr"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filtrovat dotazy podle slova nebo regulárního výrazu:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "Sloučit dotazy ignorováním dat ve WHERE"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Součet sloučených řádků:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Celkem:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Nahrávám záznamy"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "Obnovení monitoru selhalo"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "Znovu načíst stránku"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr "Ovlivněné záznamy:"
-#: js/messages.php:181
+#: js/messages.php:188
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:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
@@ -1446,171 +1478,171 @@ msgstr ""
"Selhalo vytvoření grafu z importované konfigurace. Používám místo ní výchozí "
"nastavení."
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Import"
-#: js/messages.php:185
+#: js/messages.php:192
msgid "Analyse Query"
msgstr "Analyzovat dotaz"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr "Poradce"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr "Možné výkonostní problémy"
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr "Problém"
-#: js/messages.php:192
+#: js/messages.php:199
msgid "Recommendation"
msgstr "Doporučení"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr "Podrobnosti o pravidle"
-#: js/messages.php:194
+#: js/messages.php:201
msgid "Justification"
msgstr "Zdůvodnění"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr "Použitá proměnná / vzorec"
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr "Test"
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Zrušit"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Nahrávám"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Probíhá zpracování požadavku"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Chyba při zpracování požadavku"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Odstraňuji sloupec"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Přidávám primární klíč"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Přejmenovávám databáze"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Znovu načítám databázi"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopíruji databázi"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Měním znakovou sadu"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabulka musí mít alespoň jedno pole"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Vytvořit tabulku"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Vložit tabulku"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Skrýt indexy"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Zobrazit indexy"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Vyhledávám"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Skrýt výsledky vyhledávání"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Zobrazit výsledky vyhledávání"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Procházím"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Odstraňuji"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Skrýt pole pro dotaz"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Zobrazit pole pro dotaz"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nebyl vybrán žádný řádek"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Změnit"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Doba běhu dotazu"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1618,40 +1650,40 @@ msgstr "Doba běhu dotazu"
msgid "Save"
msgstr "Uložit"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Skrýt parametry vyhledávání"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Zobrazit parametry vyhledávání"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorovat"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Přidat sloupce"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Zvolte odkazovaný klíč"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Zvolte cizí klíč"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Zvolte, prosím, primární nebo unikátní klíč"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Zvolte která pole zobrazit"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1659,59 +1691,59 @@ msgstr ""
"Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. "
"Přejete si pokračovat?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Přidat paramer pro sloupec "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr "Klávesou Esc ukončíte editaci"
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Uspořádejte přetažením"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Klikněte pro řazení"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Klikněte pro označení"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Klikněte na šipku pro vybrání sloupců"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Vytvořit heslo"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Vytvořit"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Změnit heslo"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Více"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1721,255 +1753,255 @@ msgstr ""
"je %s a byla vydána %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", poslední stabilní verze:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "aktuální"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Hotovo"
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr "Předchozí"
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr "Následující"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Dnešek"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "leden"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "únor"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "březen"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "duben"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "květen"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "červen"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "červenec"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "srpen"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "září"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "říjen"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "listopad"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "pro"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Neděle"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Pondělí"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Úterý"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Středa"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Čtvrtek"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Pátek"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Čt"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Pá"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Týd"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuty"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekundy"
@@ -2225,8 +2257,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -2368,7 +2400,7 @@ msgstr "sdílený"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabulky"
@@ -2447,7 +2479,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2496,7 +2528,7 @@ msgid "Documentation"
msgstr "Dokumentace"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-dotaz"
@@ -2534,7 +2566,7 @@ msgid "Create PHP Code"
msgstr "Vytvořit PHP kód"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Obnovit"
@@ -2555,7 +2587,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Upravit zde"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilování"
@@ -2652,7 +2684,7 @@ msgstr "Klikněte pro přepnutí"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5262,8 +5294,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -5466,7 +5498,7 @@ msgstr "Seřadit podle klíče"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5530,7 +5562,7 @@ msgid "The row has been deleted"
msgstr "Řádek byl smazán"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Ukončit"
@@ -5546,7 +5578,7 @@ msgstr "Zobrazeny záznamy"
msgid "total"
msgstr "celkem"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "dotaz trval %01.4f sekund"
@@ -5617,7 +5649,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávací paměť"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -6014,8 +6046,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@@ -6110,28 +6142,28 @@ msgid "Display MIME types"
msgstr "Zobrazit MIME typy"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Počítač"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Vygenerováno"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Verze MySQL"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Verze PHP"
@@ -6340,47 +6372,47 @@ msgid "Generated by"
msgstr "Vygeneroval"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Obsah struktury se zobrazí po kliknutí na její jméno"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Přejít na databázi"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr "Upravit nastavení pro %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Přejít na tabulku"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr "Struktura %s"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Přejít na podhled"
@@ -6839,14 +6871,14 @@ msgid "Slave status"
msgstr "Stav podřízeného"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Proměnná"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Hodnota"
@@ -7048,7 +7080,7 @@ msgid "Returns"
msgstr "Vrací"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Čas"
@@ -7481,12 +7513,12 @@ msgid "Synchronize"
msgstr "Synchronizace"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binární log"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Proměnné"
@@ -7539,11 +7571,11 @@ msgstr "Vyčistit"
msgid "Columns"
msgstr "Pole"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Přidat tento SQL dotaz do oblíbených"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
@@ -7687,8 +7719,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
-"spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
+"%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@@ -7739,8 +7771,8 @@ msgid ""
"No description is available for this transformation. Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co %"
-"s dělá."
+"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co "
+"%s dělá."
#: libraries/tbl_properties.inc.php:591 tbl_structure.php:647
#, php-format
@@ -7951,7 +7983,7 @@ msgstr "Verze protokolu"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Uživatel"
@@ -8351,8 +8383,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
-"sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
+"%sNastavovacího skriptu%s."
#: prefs_manage.php:300
msgid "Save to browser's storage"
@@ -8391,17 +8423,17 @@ msgstr "Soubor neexistuje"
msgid "Select binary log to view"
msgstr "Zvolte binární log pro zobrazení"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Soubory"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Zobrazit zkrácené dotazy"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Zobrazit celé dotazy"
@@ -8791,8 +8823,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -8920,7 +8952,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Zobrazit stav nadřízeného"
@@ -9067,12 +9099,12 @@ msgstr ""
"Tento server není nastaven jako podřízený v replikačním procesu. Přejete si "
"ho nastavit?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Vlákno %s bylo úspěšně zabito."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9080,111 +9112,111 @@ msgstr ""
"phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již "
"skončil."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Obslužné rutiny"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Vyrovnávací paměť dotazů"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Počet vláken"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Dočasná data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Odložené inserty"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Vyrovnávací paměť klíčů"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Použité výběry"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Řazení"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordinátor transakcí"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Zavřít všechny tabulky"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Zobrazit otevřené tabulky"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Zobrazit podřízené servery"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Zobrazit stav podřízených serverů"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Vyprázdnit vyrovnávací paměť dotazů"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Stav serveru"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Všechny stavové proměnné"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr "Poradce"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Obnovovací frekvence: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Obsahující slovo:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Zobrazit jen hodnoty s upozorněním"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtrovat podle kategorie..."
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr "Zobrazit neformátované hodnoty"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Související odkazy:"
-#: server_status.php:758
+#: server_status.php:800
msgid "Run analyzer"
msgstr "Spustit analýzu"
-#: server_status.php:759
+#: server_status.php:801
msgid "Instructions"
msgstr "Návod"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9199,44 +9231,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Dotazů od spuštění: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "za hodinu"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "za minutu"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "za sekundu"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Údaj"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Síťový provoz od spuštění: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9244,17 +9276,17 @@ msgstr ""
"Tento server pracuje jako nadřízený i podřízený v "
"replikačním procesu."
-#: server_status.php:911
+#: server_status.php:953
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:913
+#: server_status.php:955
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:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9262,11 +9294,11 @@ msgstr ""
"Pro více informací o stavu replikace se podívejte do sekce replikace."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Stav replikace"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9274,45 +9306,45 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Přijato"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Odesláno"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Maximum současných připojení"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Nepovedených pokusů"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Přerušené"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Příkaz"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9322,16 +9354,16 @@ msgstr ""
"binlog_cache_size a musely použít dočasný soubor pro uložení příkazů "
"transakce."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Počet transakcí, které využily dočasný binární log."
-#: server_status.php:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9342,18 +9374,18 @@ msgstr ""
"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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Počet vytvořených dočasných souborů."
-#: server_status.php:1143
+#: server_status.php:1185
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:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9361,7 +9393,7 @@ msgstr ""
"Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba "
"(pravděpodobně duplicitní klíč)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9369,23 +9401,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Počet řádků zapsaných pomocí INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Počet provedených příkazů FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Počet interních příkazů COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Počet požadavků na smazání řádku."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9394,7 +9426,7 @@ 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:1151
+#: server_status.php:1193
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, "
@@ -9404,7 +9436,7 @@ msgstr ""
"server provádí mnoho kompletních procházení indexu. Na příklad SELECT col1 "
"FROM foo, pokud je col1 indexována."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9412,7 +9444,7 @@ msgstr ""
"Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota "
"znamená, že dotazy správně využívají indexy."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9422,7 +9454,7 @@ msgstr ""
"zvětšuje pokud provádíte dotaz na indexované pole s omezením rozsahu nebo "
"prohledáváte index."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9430,7 +9462,7 @@ msgstr ""
"Počet požadavků na přečtení předchozího řádku z indexu. Používané pro "
"optimalizaci dotazů ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9442,7 +9474,7 @@ msgstr ""
"Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky "
"nebo používáte spojení tabulek, která nevyužívají indexů."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9453,35 +9485,35 @@ msgstr ""
"pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné "
"indexy."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Počet interních příkazů ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Počet požadavků na aktualizaci řádku."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Počet požadavků na vložení řádku."
-#: server_status.php:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Počet změněných stránek."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Počet volných stránek."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9490,7 +9522,7 @@ 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:1165
+#: server_status.php:1207
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 "
@@ -9502,11 +9534,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Celková velikost InnoDB bufferů, ve stránkách."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9514,7 +9546,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9522,11 +9554,11 @@ 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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Počet provedených logických čtení."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9534,7 +9566,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9547,55 +9579,55 @@ msgstr ""
"k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, "
"měla by tato hodnota být malá."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Počet zápisů provedených do InnoDB bufferu."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Počet provedených synchronizací fsync()."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Počet nevyřízených synchronizací fsync()."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Počet nevyřízených čtení."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Počet nevyřízených zápisů."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Velikost přečtených dat, v bajtech."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Počet provedených čtení dat."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Počet provedených zápisů dat."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Velikost zapsaných dat, v bajtech."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9603,35 +9635,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Počet požadavků na zápis do logovacího souboru."
-#: server_status.php:1185
+#: server_status.php:1227
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:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Počet nevyřízených synchronizací logovacích souborů."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Počet nevyřízených zápisů do logovacích souborů."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Počet bajtů zapsaných do logovacího souboru."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Počet vytvořených stránek."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9639,51 +9671,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Počet přečtených stránek."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Počet zapsaných stránek."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet řádků odstraněných z InnoDB tabulek."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet řádků vložených do InnoDB tabulek."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Počet řádků přečtených z InnoDB tabulek."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet řádků aktualizovaných v InnoDB tabulkách."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9691,7 +9723,7 @@ msgstr ""
"Počet bloků ve vyrovnávací pamě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:1204
+#: server_status.php:1246
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."
@@ -9699,7 +9731,7 @@ msgstr ""
"Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty "
"poznáte jak moc je vyrovnávací paměť využitá."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9708,11 +9740,11 @@ msgstr ""
"Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje "
"maximum bloků, které kdy byly obsazeny najednou."
-#: server_status.php:1206
+#: server_status.php:1248
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 vyrovnávací paměti."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -9722,15 +9754,15 @@ msgstr ""
"pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost "
"vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Počet požadavků na zápis bloku klíče na disk."
-#: server_status.php:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9740,17 +9772,17 @@ msgstr ""
"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:1211
+#: server_status.php:1253
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:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9758,19 +9790,19 @@ msgstr ""
"Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, "
"pravděpodobně máte malou vyrovnávací paměť pro tabulky."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Počet otevřených souborů."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Počet aktuálně otevřených tabulek."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9780,19 +9812,19 @@ msgstr ""
"na problému s fragmentací, která může být vyřešena spuštěním příkazu FLUSH "
"QUERY CACHE."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Počet zásahů vyrovnávací paměti dotazů."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Počet dotazů přidaných do vyrovnávací paměti dotazů."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9804,7 +9836,7 @@ msgstr ""
"Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování "
"dotazů z vyrovnávací paměti."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9812,19 +9844,19 @@ msgstr ""
"Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli "
"nastavení query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Počet dotazů ve vyrovnávací paměti dotazů."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stav failsafe replikace."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9832,12 +9864,12 @@ msgstr ""
"Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli "
"byste zkontrolovat indexy tabulek."
-#: server_status.php:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9845,7 +9877,7 @@ 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 indexy tabulek.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9853,38 +9885,38 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
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:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -9893,23 +9925,23 @@ 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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Počet řazení, které byly omezeny rozsahem."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Počet řazených řádek."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -9920,7 +9952,7 @@ msgstr ""
"problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit "
"tabulky nebo použít replikaci."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -9930,11 +9962,11 @@ msgstr ""
"spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, "
"měli byste zvýšit thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Počet aktuálně otevřených připojení."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9945,57 +9977,57 @@ msgstr ""
"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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Počet vláken, která nespí."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Spustit monitor"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Návod/Nastavení"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Ukončit upravování grafů"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Přidat graf"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Upravit/Uspořádat grafy"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Obnovovací frekvence"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "Sloupce grafu"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr "Uspořádání grafů"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr "Obnovit na výchozí hodnotu"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Instrukce monitoru"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10004,7 +10036,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10012,7 +10044,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10024,7 +10056,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10033,85 +10065,79 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "Využití procesoru"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Odstranit graf"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Využití paměti"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Využití odkládacího prostoru"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Stavové proměnné"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Vyberte série:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Obvykle monitorované"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "nebo zadejte jméno proměnné:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Zobrazit jako rozdíl"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Vynásobit"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Přidat jednoty"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Přidat tuto sérii"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Odstranit série"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Série v grafu::"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Statistiky záznamů"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Zvolený časový rozsah:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE"
-#: server_status.php:1546
+#: server_status.php:1583
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:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Analýza dotazu"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -10119,7 +10145,7 @@ msgstr[0] "%d sekunda"
msgstr[1] "%d sekundy"
msgstr[2] "%d sekund"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10506,8 +10532,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
-"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
+"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:290
@@ -10518,8 +10544,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
-"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
+"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
@@ -10581,34 +10607,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Projít hodnoty cizích klíčů"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID vloženého řádku: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Zobrazuji jako PHP kód"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Zobrazuji SQL dotaz"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Proběhlo zkontrolování SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexy v tabulce „%s\""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Název"
@@ -11346,9 +11372,9 @@ msgid "Current amount of Questions: %s"
msgstr "Současné připojení"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Zobrazit SQL dotazy"
#: po/advisory_rules.php:16
@@ -11370,7 +11396,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Vyprázdnit vyrovnávací paměť dotazů"
#: po/advisory_rules.php:21
@@ -11557,12 +11583,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Využití místa"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11619,8 +11639,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11729,9 +11749,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Umožňuje vytvářet dočasné tabulky."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11749,13 +11769,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Umožňuje vytvářet dočasné tabulky."
#: po/advisory_rules.php:113
#, php-format
@@ -11787,8 +11809,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Nebyly nalezeny žádné rutiny."
#: po/advisory_rules.php:121
#, fuzzy
@@ -11808,7 +11832,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11831,7 +11855,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11840,7 +11864,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11853,8 +11877,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Kde zobrazit odkazy s akcemi při procházení"
#: po/advisory_rules.php:136
#, fuzzy
@@ -11864,8 +11890,8 @@ msgstr "Kde zobrazit odkazy s akcemi při procházení"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11897,10 +11923,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabulka"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Kde zobrazit odkazy s akcemi při procházení"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11927,8 +11952,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabulka"
#: po/advisory_rules.php:152
msgid ""
@@ -11969,8 +11997,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Velikost paměti pro řazení"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -11990,8 +12020,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Velikost paměti pro řazení"
#: po/advisory_rules.php:168
#, php-format
@@ -11999,7 +12031,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12019,7 +12051,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Vytvořit tabulku"
#: po/advisory_rules.php:176
@@ -12040,10 +12072,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Zobrazit otevřené tabulky"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formát importovaného souboru"
#: po/advisory_rules.php:181
msgid ""
@@ -12066,7 +12098,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formát importovaného souboru"
#: po/advisory_rules.php:186
@@ -12113,7 +12145,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Vyrovnávací paměť klíčů"
#: po/advisory_rules.php:201
@@ -12131,8 +12163,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Sledování není zapnuté."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12191,10 +12225,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time je nastaven na %d sekund."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Připojení"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Trvalé připojení"
#: po/advisory_rules.php:221
msgid ""
@@ -12217,9 +12251,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Komprimovat připojení"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Trvalé připojení"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12241,7 +12275,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Trvalé připojení"
#: po/advisory_rules.php:231
@@ -12255,8 +12289,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formát importovaného souboru"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12277,7 +12313,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formát importovaného souboru"
#: po/advisory_rules.php:243
@@ -12304,8 +12340,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Velikost vyrovnávací paměti"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12417,6 +12455,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Využití místa"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Zobrazit otevřené tabulky"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Připojení"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Komprimovat připojení"
+
+#~ msgid "CPU Usage"
+#~ msgstr "Využití procesoru"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Využití paměti"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Využití odkládacího prostoru"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS"
diff --git a/po/cy.po b/po/cy.po
index 1bf254e8ea..e26844a4c2 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,18 +6,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \n"
+"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Dangos pob"
@@ -50,7 +50,7 @@ msgstr "Chwilio"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -91,7 +91,7 @@ msgstr "Enw allweddol"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Disgrifiad"
@@ -204,7 +204,7 @@ msgstr "Cysylltu i"
msgid "Comments"
msgstr "Sylwadau"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -215,12 +215,12 @@ msgstr "Sylwadau"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Na"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -236,7 +236,7 @@ msgstr "Na"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -359,7 +359,7 @@ msgstr "Golygu neu allforio sgema perthynol"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -621,8 +621,8 @@ msgstr "Nid yw tracio'n weithredol"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@@ -633,7 +633,7 @@ msgstr "Dangos"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Dyblygiad"
@@ -675,7 +675,7 @@ msgstr "Gwiriwch dablau â gorbenion"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Allforio"
@@ -739,10 +739,10 @@ msgstr "Tablau a draciwyd"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -762,7 +762,7 @@ msgstr "Diweddarwyd"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Statws"
@@ -861,8 +861,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@@ -906,7 +906,7 @@ msgstr "Cafodd y clustnod ei ddileu."
msgid "Showing bookmark"
msgstr "Dangos clustnod"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Clustnodi %s a grëwyd"
@@ -954,15 +954,15 @@ msgstr "Pwyso i ddewis"
msgid "Click to unselect"
msgstr "Pwyso i dad-ddewis"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "A ydych chi wir am"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
@@ -1050,12 +1050,12 @@ msgstr "Dim Breintiau"
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Cau"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1063,17 +1063,17 @@ msgstr "Cau"
msgid "Edit"
msgstr "Golygu"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Dewis Gweinydd"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show insert query"
msgid "Live query chart"
@@ -1086,13 +1086,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Cyfanswm"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1124,7 +1124,7 @@ msgstr "Dewis Gweinydd"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Prosesau"
@@ -1142,172 +1142,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
msgstr "Dangos ystadegau"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to write file to disk."
+msgid "Local monitor configuration icompatible"
+msgstr "Methu ag ysgrifennu i'r ddisg."
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "SQL query history table"
+msgid "Query cache efficiency"
+msgstr "Tabl hanes ymholiadau SQL"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache usage"
+msgstr "Gweithrediadau canlyniadau ymholiad"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache used"
+msgstr "Gweithrediadau canlyniadau ymholiad"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Cyfrif ffeiliau log"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Pwll Byffer"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Cyfanswm"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Tudalennau rhydd"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Fersiynau"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Tynnwch y gronfa ddata"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Snap i'r grid"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Dim"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1315,26 +1347,26 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgctxt "BLOB repository"
#| msgid "Enabled"
@@ -1342,374 +1374,374 @@ msgid "Enable %s"
msgstr "Galluogwyd"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Analluogwch"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Teitl yr adroddiad"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Gwahaniaeth"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Neidiwch i'r gronfa ddata"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Hidlydd"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Hidlydd"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of columns"
msgid "Sum of grouped rows:"
msgstr "Nifer y colofnau"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Cyfanswm"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Load"
msgid "Loading logs"
msgstr "llwytho"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Ail-lwytho"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Mewnforio"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ymholiad Diweddaru"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dogfennaeth"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Manylion..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authenticating..."
msgid "Justification"
msgstr "Yn dilysu..."
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Diddymu"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "llwytho"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Prosesau"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Ailenwch y gronfa ddata i"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Ailenwch y gronfa ddata i"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copïwch y gronfa ddata i"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Set nodau"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Crëwch dabl"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Defnyddiwch Dablau"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indecsau"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Dangos grid"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Chwilio"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "in query"
msgid "Hide search results"
msgstr "mewn ymholiad"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show insert query"
msgid "Show search results"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Porwch"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "Dileu"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "mewn ymholiad"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "Show insert query"
msgid "Show query box"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Newid"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "SQL execution"
msgid "Query execution time"
msgstr "Gweithrediad SQL"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1717,112 +1749,112 @@ msgstr "Gweithrediad SQL"
msgid "Save"
msgstr "Cadw"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "mewn ymholiad"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "Show insert query"
msgid "Show search criteria"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Anwybyddu"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s column(s)"
msgid "Add columns"
msgstr "Ychwanegwch %s colofn"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Dewis Allwedd Estron"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Dewis colofn i'w dangos"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Pwyso i ddewis"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generadu Cyfrinair"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generadu"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Newid cyfrinair"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "Llu"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1830,31 +1862,31 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: js/messages.php:292
+#: js/messages.php:299
#, 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:311
+#: js/messages.php:318
msgid "Done"
msgstr "Gorffen"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Cynt"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1862,149 +1894,149 @@ msgid "Next"
msgstr "Nesaf"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Heddiw"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Ionawr"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Chwefror"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Mawrth"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Ebrill"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Mehefin"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Gorffennaf"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Awst"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Medi"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Hydref"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Tachwedd"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Rhagfyr"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Ion"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Chwe"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Maw"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Meh"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Gor"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aws"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Med"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Hyd"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Tach"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Rhag"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Dydd Sul"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Dydd Llun"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Dydd Mawrth"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "DYdd Mercher"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Dydd Iau"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Dydd Gwener"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Dydd Sadwrn"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2012,84 +2044,84 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Llun"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Maw"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Iau"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Llu"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Ia"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Gw"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Wy"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Awr"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Munud"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Eiliad"
@@ -2344,11 +2376,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
-"$sgript gosod%2$s er mwyn ei chreu."
+"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
+"%1$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2493,7 +2525,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tablau"
@@ -2573,7 +2605,7 @@ msgstr ""
"Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Gweinydd"
@@ -2622,7 +2654,7 @@ msgid "Documentation"
msgstr "Dogfennaeth"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Ymholiad SQL"
@@ -2662,7 +2694,7 @@ msgid "Create PHP Code"
msgstr "Creu Cod PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Adfywio"
@@ -2683,7 +2715,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mewnol"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Proffilio"
@@ -2792,7 +2824,7 @@ msgstr "Pwyso i ddewis"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5355,8 +5387,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5571,7 +5603,7 @@ msgstr "Trefnu gan allwedd"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5639,7 +5671,7 @@ msgid "The row has been deleted"
msgstr "Cafodd y rhes ei dileu"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Lladd"
@@ -5655,7 +5687,7 @@ msgstr "Yn dangos rhesi"
msgid "total"
msgstr "cyfanswm"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
@@ -5728,7 +5760,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pwll Byffer"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Statws InnoDB"
@@ -6075,8 +6107,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6191,28 +6223,28 @@ msgid "Display MIME types"
msgstr "Mathau MIME ar gael"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Gwesteiwr"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Amser Generadu"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Fersiwn y gweinydd"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Fersiwn PHP"
@@ -6407,49 +6439,49 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Data ar goll ar gyfer %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Strwythur yn unig"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6895,14 +6927,14 @@ msgid "Slave status"
msgstr "Statws y caeth"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Newidyn"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Gwerth"
@@ -7119,7 +7151,7 @@ msgid "Returns"
msgstr "Dychwelyd math"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Amser"
@@ -7603,12 +7635,12 @@ msgid "Synchronize"
msgstr "Cydamseru"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Log deuaidd"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Newidynnau"
@@ -7661,11 +7693,11 @@ msgstr "Clirio"
msgid "Columns"
msgstr "Colofnau"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Clustnodwch yr ymholiad SQL hwn"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -8015,7 +8047,7 @@ msgstr "Fersiwn protocol"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Defnyddiwr"
@@ -8457,17 +8489,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Ffeiliau"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8845,8 +8877,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8968,7 +9000,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9105,134 +9137,134 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Adfywio"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show only listed databases"
msgid "Show only alert values"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only listed databases"
msgid "Show unformatted values"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Perthnasau"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "Ymholiad"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Swyddogaethau"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9247,130 +9279,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Gorchymyn"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9378,78 +9410,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9457,7 +9489,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9465,42 +9497,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9508,33 +9540,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9543,227 +9575,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9771,99 +9803,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9871,18 +9903,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9890,64 +9922,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Routines"
msgid "Add chart"
msgstr "Rheolweithiau"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Adfywio"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Adfer gwerth diofyn"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9956,7 +9988,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9964,7 +9996,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9976,7 +10008,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9985,97 +10017,91 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr ""
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Tynnwch y gronfa ddata"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr ""
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Dewis Tablau"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Enw tabl annilys"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Ychwanegwch weinydd newydd"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Dangos ystadegau"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Dewis Tablau"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "Ymholiad"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10083,7 +10109,7 @@ msgid_plural "%d seconds"
msgstr[0] "Eiliad"
msgstr[1] "Eiliad"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10493,36 +10519,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Dilysu SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -11299,9 +11325,9 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Dangos ymholiadau SQL"
#: po/advisory_rules.php:16
@@ -11323,7 +11349,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show insert query"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Dangos ymholiad mewnosod"
#: po/advisory_rules.php:21
@@ -11508,12 +11534,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Latched pages"
-msgid "memcached usage"
-msgstr "Tudalennau "
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11570,8 +11590,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11676,8 +11696,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11693,12 +11712,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11731,8 +11750,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "Rate of joins without indexes"
+msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11752,7 +11773,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11775,7 +11796,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11784,7 +11805,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11797,7 +11818,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11806,8 +11827,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11838,11 +11859,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabl"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11869,8 +11887,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabl"
#: po/advisory_rules.php:152
msgid ""
@@ -11911,8 +11932,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Trefnu maint y byffer"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -11932,8 +11955,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Trefnu maint y byffer"
#: po/advisory_rules.php:168
#, php-format
@@ -11941,7 +11966,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11961,7 +11986,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Crëwch dabl"
#: po/advisory_rules.php:176
@@ -11980,9 +12005,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, php-format
-msgid "% open files"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Fformat y ffeil a mewnforiwyd"
#: po/advisory_rules.php:181
msgid ""
@@ -12005,7 +12031,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Fformat y ffeil a mewnforiwyd"
#: po/advisory_rules.php:186
@@ -12046,7 +12072,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -12064,8 +12090,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Nid yw tracio'n weithredol"
#: po/advisory_rules.php:206
#, fuzzy
@@ -12121,10 +12149,8 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "MySQL connection collation"
-msgid "% connections used"
-msgstr "Coladiad cysylltiad MySQL"
+msgid "Percentage of used connections"
+msgstr ""
#: po/advisory_rules.php:221
msgid ""
@@ -12146,8 +12172,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted connections"
+msgstr "Fformat y ffeil a mewnforiwyd"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12167,8 +12195,10 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Rate of aborted connections"
+msgstr "Fformat y ffeil a mewnforiwyd"
#: po/advisory_rules.php:231
msgid "Too many connections are aborted"
@@ -12181,8 +12211,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Fformat y ffeil a mewnforiwyd"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12203,7 +12235,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Fformat y ffeil a mewnforiwyd"
#: po/advisory_rules.php:243
@@ -12228,8 +12260,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Maint y pwll byffer"
#: po/advisory_rules.php:251
msgid ""
@@ -12337,6 +12371,14 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Tudalennau "
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Coladiad cysylltiad MySQL"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/da.po b/po/da.po
index 205063c12f..63b1f0877e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-23 21:27+0200\n"
"Last-Translator: Jørgen Thomsen \n"
"Language-Team: danish \n"
+"Language: da\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Vis alle"
@@ -47,7 +47,7 @@ msgstr "Søg"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Nøglenavn"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Beskrivelse"
@@ -200,7 +200,7 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Kommentarer"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nej"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Nej"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -354,7 +354,7 @@ msgstr "Editer eller eksporter relations skema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -611,8 +611,8 @@ msgstr "Sporing er ikke aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s."
@@ -623,7 +623,7 @@ msgstr "Visning"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikation"
@@ -665,7 +665,7 @@ msgstr "Check tabeller der har overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporter"
@@ -728,10 +728,10 @@ msgstr "Sporede tabeller"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -751,7 +751,7 @@ msgstr "Opdateret"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -850,11 +850,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
-"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
+"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -897,7 +897,7 @@ msgstr "Bogmærket er fjernet."
msgid "Showing bookmark"
msgstr "Viser bogmærke"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bogmærke %s oprettet"
@@ -950,15 +950,15 @@ msgstr "Klik for at vælge"
msgid "Click to unselect"
msgstr "Klik for at fravælge"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Er du sikker på at du vil "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Du er ved at DESTRUERE en komplet database!"
@@ -1034,12 +1034,12 @@ msgstr "Genindlæser privillegier"
msgid "Removing Selected Users"
msgstr "Fjerner valge brugere"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Luk"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1047,15 +1047,15 @@ msgstr "Luk"
msgid "Edit"
msgstr "Ret"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Realtids trafikoversigt"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Realtids forbind./opgave-oversigt"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Realtid forespørgsels-oversigt"
@@ -1066,13 +1066,13 @@ msgstr "Statiske data"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Andet"
@@ -1102,7 +1102,7 @@ msgstr "Server-trafik (i KiB)"
msgid "Connections since last refresh"
msgstr "Forbindelser siden sidste visning"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processer"
@@ -1120,176 +1120,208 @@ msgstr "Spørgsmål siden sidste visning"
msgid "Questions (executed statements by the server)"
msgstr "Spørgsmål (eksekverede forespørgsler på serveren)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Statistik over forespørgsler"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Kunne ikke indlæse konfigurationsfilen"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Forespørgsel-mellemlager"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Forespørgsel-mellemlager"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Forespørgsel-mellemlager"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "System CPU forbrug"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Systemhukommelse"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Gennemsnitlig belastning"
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "System memory"
msgid "Total memory"
msgstr "Systemhukommelse"
-#: js/messages.php:101
+#: js/messages.php:108
#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
msgstr "Systemhukommelse"
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Bufferpool"
-#: js/messages.php:103
+#: js/messages.php:110
#, fuzzy
#| msgid "System memory"
msgid "Free memory"
msgstr "Systemhukommelse"
-#: js/messages.php:104
+#: js/messages.php:111
#, fuzzy
#| msgid "System memory"
msgid "Used memory"
msgstr "Systemhukommelse"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Frie sider"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Modtaget"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Forbindelser"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Spørgsmål"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Indstillinger"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Fjern diagram"
-#: js/messages.php:121
+#: js/messages.php:128
#, fuzzy
#| msgid "Edit labels and series"
msgid "Edit title and labels"
msgstr "Rediger overskrifter og serier"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Snap diagram til gitter"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Tilføj mindst en variabel til serien"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Ingen"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Genstart monitor"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Sæt monitor på pause"
-#: js/messages.php:129
+#: js/messages.php:136
#, fuzzy
#| msgid "general_log and slow_query_log is enabled."
msgid "general_log and slow_query_log are enabled."
msgstr "general_log og slow_query_log er aktiveret."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log er aktiveret."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log er aktiveret."
-#: js/messages.php:132
+#: js/messages.php:139
#, fuzzy
#| msgid "slow_query_log and general_log is disabled."
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log og general_log er deaktiveret."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output er ikke sat til TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output er sat til TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1300,12 +1332,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:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1314,30 +1346,30 @@ msgstr ""
"standard ved genstart af server"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Aktiver %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Deaktiver %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Sæt long_query_time til %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1345,41 +1377,41 @@ msgstr ""
"Du har ikke superbruger rettigheder til at ændre disse variable. Log "
"venligst ind som root eller kontakt din database administrator."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Ændre indstillinger"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Aktuelle indstillinger"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Diagramtitel"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Differentiel"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Divideret med %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Fra slow log"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Fra generel log"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid."
-#: js/messages.php:158
+#: js/messages.php:165
#, fuzzy
#| msgid ""
#| "This columns shows the amount of identical queries that are grouped "
@@ -1394,7 +1426,7 @@ msgstr ""
"sammen. Dog kun SQL tekst sammenlignes, så de andre attributter af "
"forespørgsler som starttid kan være forskellige."
-#: js/messages.php:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1404,267 +1436,267 @@ msgstr ""
"forespørgsler ind i den samme tabel også grupperet sammen unden hensyn til "
"indsatte data."
-#: js/messages.php:160
+#: js/messages.php:167
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:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Gå til logtabellen"
-#: js/messages.php:163
+#: js/messages.php:170
#, fuzzy
#| msgid "Log analysed, but not data found in this time span."
msgid "Log analysed, but no data found in this time span."
msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filter"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Antal indsatte rækker"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Total"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Indlæser logs"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Genindlæs"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importer"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Opdater forespørgsel"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor system"
msgstr "Anvend divisor"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentation"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Detaljer"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Autentifikation"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Annuller"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Indlæser"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Udfører forespørgsel"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Felj i udførsel af forespørgsel"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Sletter kolonne"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Tilføjer primær nøgle"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Omdøber databaser"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Opfrisk database"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopierer database til"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Ændrer tegnsæt"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabellen skal have mindst en kolonne"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Opret tabel"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Indsæt tabel"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Skjul indekser"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Vis indekser"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Søger"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Slet søgeresultater"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Vis søgeresultater"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Viser"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Sletter"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Skjul forespørgeselsboks"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Vis forespørgselsbox"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Ingen rækker valgt"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Ændre"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maksimal eksekveringstid"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1672,42 +1704,42 @@ msgstr "Maksimal eksekveringstid"
msgid "Save"
msgstr "Gem"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Skjul søgekriterie"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Vis søgekriterie"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Tilføj kolonne"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Vælg refereret nøgle"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Vælg fremmednøgle"
-#: js/messages.php:263
+#: js/messages.php:270
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:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Vælg kolonne til visning"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1715,59 +1747,59 @@ msgstr ""
"Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke "
"gemmer dem. Vil du fortsætte?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Tilføj mulighed for kolonne"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Træk for at ændre orden"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Klik for at sortere"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Klik for at markere/afmarkere"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Generér adgangskode"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generér"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Ændre adgangskode"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Mere"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1777,27 +1809,27 @@ msgstr ""
"opgradere. Den nyeste version er %s, udgivet den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", seneste stabile version:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "up-to-date"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Færdig"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Forrige"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1805,149 +1837,149 @@ msgid "Next"
msgstr "Næste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "I dag"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "januar"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "februar"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "marts"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "april"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "maj"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "juni"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "juli"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "august"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "september"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "november"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "søndag"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "mandag"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "tirsdag"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "onsdag"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "torsdag"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "fredag"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "lørdag"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1955,84 +1987,84 @@ msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "lør"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "sø"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "ti"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "on"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "fr"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "lø"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "uge"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Time"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekund"
@@ -2290,8 +2322,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@@ -2438,7 +2470,7 @@ msgstr "delt"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabeller"
@@ -2518,7 +2550,7 @@ msgstr ""
"Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2567,7 +2599,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-forespørgsel"
@@ -2605,7 +2637,7 @@ msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Opdater"
@@ -2626,7 +2658,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "I linje"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilering"
@@ -2731,7 +2763,7 @@ msgstr "Klik for at skifte"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5352,8 +5384,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@@ -5556,7 +5588,7 @@ msgstr "Sorteringsnøgle"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5620,7 +5652,7 @@ msgid "The row has been deleted"
msgstr "Rækken er slettet"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Dræb (Kill)"
@@ -5636,7 +5668,7 @@ msgstr "Viser poster"
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "forepørgsel tog %01.4f sek"
@@ -5709,7 +5741,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufferpool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6107,8 +6139,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation og yderliger information om PBXT kan findes på %sPrimeBase XT "
"hjemmeside%s"
@@ -6203,28 +6235,28 @@ msgid "Display MIME types"
msgstr "Vis MIME-typer"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Vært"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Genereringstid"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Serverversion"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP-version"
@@ -6439,54 +6471,54 @@ msgid "Generated by"
msgstr "Genereret af"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerede ingen data (fx ingen rækker)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du: "
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Vis en strukturs indhold ved at klikke på dens navn"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Ændr alle indstillinger ved at klikke på det tilhørende \"Indstilling\" link"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Rediger dens struktur ved at følge linket \"Struktur\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Gå til database"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Manglende data for %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Gå til tabel"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Kun strukturen"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Gå til view"
@@ -6943,14 +6975,14 @@ msgid "Slave status"
msgstr "Slavestatus"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Værdi"
@@ -7154,7 +7186,7 @@ msgid "Returns"
msgstr "Returværdier"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tid"
@@ -7587,12 +7619,12 @@ msgid "Synchronize"
msgstr "Synkroniser"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binær log"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variable"
@@ -7645,11 +7677,11 @@ msgstr "Ryd"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Lav bogmærke til denne SQL-forespørgsel"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Lad alle brugere bruge dette bogmærke"
@@ -8062,7 +8094,7 @@ msgstr "Protokolversion"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Bruger"
@@ -8181,8 +8213,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"phpMyAdmin configuration storage er ikke fuldstændigt konfigureret; nogle "
-"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik %"
-"sher%s."
+"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik "
+"%sher%s."
#: main.php:314
msgid ""
@@ -8506,17 +8538,17 @@ msgstr "Filen eksisterer ikke"
msgid "Select binary log to view"
msgstr "Vælg binærlog til gennemsyn"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Trunkér viste forespørgsler"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Vis fuldstændige forespørgsler"
@@ -8906,14 +8938,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
-"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
-"s før du fortsætter."
+"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
+"%s før du fortsætter."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -9038,7 +9070,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Vis master status"
@@ -9185,131 +9217,131 @@ msgstr ""
"Serveren er ikke konfigureret som slave i en replikationsprocess. Vil du konfigurere den?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråd %s blev stoppet."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Handler"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Forespørgsel-mellemlager"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Tråde"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Forsinkede inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Nøglemellemlager"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Joins"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaktionskoordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (luk) alle tabeller"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Vis åbne tabeller"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Vis slaveværter"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Tøm forespørgsel-mellemlager"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Runtime-information"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Alle statusvariable"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:648
+#: server_status.php:690
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor"
msgstr "Anvend divisor"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Opdateringsrate:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Indeholdende ordet:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Vis kun alert-værdier"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtrer efter kategori..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Vis kun alert-værdier"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Relaterede links:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Forespørgselstype"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Instructions/Setup"
msgid "Instructions"
msgstr "Instruktioner/Opsætning"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9324,44 +9356,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Forespørgsler siden startup: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "pr. time"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "pr. minut"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "pr. sekund"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Forespørgsler"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Netværkstrafik siden startup: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9369,17 +9401,17 @@ msgstr ""
"Denne MySQL server fungerer som master og slave i en "
"replikationsproces."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denne MySQL server fungerer som master i en replikationsproces."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denne MySQL server fungerer som slave i en replikationsproces."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9387,11 +9419,11 @@ msgstr ""
"For yderligere information om replikationsstatus på serveren gå til replication section."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Status for replikation"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9399,35 +9431,35 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Modtaget"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Maks. samtidige forbindelser"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Mislykkede forsøg"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Afbrudt"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Kommando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9435,11 +9467,11 @@ msgstr ""
"Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at "
"lukke forbindelsen rigtigt."
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9449,17 +9481,17 @@ msgstr ""
"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at "
"gemme statements fra transaktionen."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9471,11 +9503,11 @@ msgstr ""
"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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Hvor mange midlertidige filer mysqld har oprettet."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9483,7 +9515,7 @@ msgstr ""
"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren "
"under udførelse af statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9491,7 +9523,7 @@ msgstr ""
"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke "
"der opstod fejl (sandsynligvis dublerede nøgler)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9499,23 +9531,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Antallet af INSERT DELAYED rækker skrevet."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Antallet af udførte FLUSH statements."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Antallet af interne COMMIT statements."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9525,7 +9557,7 @@ msgstr ""
"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer "
"antallet af gange tabeller er blevet opdaget."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9535,7 +9567,7 @@ msgstr ""
"antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT "
"col1 FROM foo, antagende at col1 er indekseret."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9544,7 +9576,7 @@ msgstr ""
"er høj, er det en god indikation af at dine forespørgsler og tabeller er "
"ordentligt indekserede."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9554,7 +9586,7 @@ msgstr ""
"hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis "
"du udfører et indeks scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9562,7 +9594,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -9574,7 +9606,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9586,35 +9618,35 @@ msgstr ""
"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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Antallet af interne ROLLBACK statements."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antallet af sider der indeholder data (beskidte eller rene)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Antallet af såkaldt beskidte sider."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Antallet af frie sider."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9624,7 +9656,7 @@ msgstr ""
"sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller "
"fjernes af andre årsager."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9636,11 +9668,11 @@ msgstr ""
"også beregnes som Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Total størrelse på buffer pool, i sider."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9649,7 +9681,7 @@ msgstr ""
"forespørgsel skal scanne en større del af en tabel men i tilfældig "
"rækkefølge."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9657,11 +9689,11 @@ msgstr ""
"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når "
"InnoDB laver en sekventiel fuld tabelscanning."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Antallet af logiske read anmodninger InnoDB har lavet."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9669,7 +9701,7 @@ msgstr ""
"Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer "
"pool og måtte lave en enkelt-side read."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9683,55 +9715,55 @@ msgstr ""
"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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antallet af skrivninger til InnoDB buffer poolen."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Antallet af fsync() operationer indtil nu."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Nuværende antal ventende fsync() operationer."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Nuværende antal af ventende reads."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Nuværende antal af ventende writes."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Mængden af data læst indtil nu, i bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Det totale antal af data reads."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Det totale antal af data writes."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Mængden af data skrevet indtil nu, i bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9739,35 +9771,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Antallet af log write anmodninger."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Antallet af fysiske skrivninger til log filen."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Antallet af fsyncs skrivninger lavet til logfilen."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Antallet af ventende log fil fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Ventende log fil skrivninger."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Antallet af bytes skrevet til log filen."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Antallet af sider oprettet."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9775,51 +9807,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Antallet af sider læst."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Antallet af sider skrevet."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Antallet af rækkelåse der ventes på i øjeblikket."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antallet af rækker slettet fra InnoDB tabeller."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antallet af rækker indsat i InnoDB tabeller."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Antallet af rækker læst fra InnoDB tables."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Antallet af rækker opdateret i InnoDB tabeller."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9828,7 +9860,7 @@ msgstr ""
"endnu ikke er blevet flushet til disk. Det hed tidligere "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9836,7 +9868,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -9846,11 +9878,11 @@ msgstr ""
"mærke der indikerer det maksimale antal blokke der på noget tidspunkt har "
"været i brug på en gang."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9860,15 +9892,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9880,7 +9912,7 @@ msgstr ""
"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler "
"endnu."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -9888,12 +9920,12 @@ msgstr ""
"Det maksimale antal forbindelser, som har været i brug samtidigt, siden "
"serveren startede."
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9901,19 +9933,19 @@ msgstr ""
"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er "
"dit tabelmellemlager sandsynligvis for lille."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Antallet af filer der er åbne."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Antallet af tabeller der er åbne."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9923,19 +9955,19 @@ msgstr ""
"kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE "
"kommando."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Antallet af mellemlager hits."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Antallet af forespørgsler tilføjet til mellemlageret."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9948,7 +9980,7 @@ msgstr ""
"Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til "
"at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9956,19 +9988,19 @@ msgstr ""
"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre "
"eller ikke mellemlagret grundet query_cache_type indstillingen)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Antallet af forespørgsler registreret i mellemlageret."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Totalt antal blokke i forespørgsels-mellemlageret."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status på fejlsikker replikation (endnu ikke implementeret)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9976,11 +10008,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9988,7 +10020,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9996,15 +10028,15 @@ msgstr ""
"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke "
"kritisk selvom tallet er stort.)"
-#: server_status.php:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10012,12 +10044,12 @@ msgstr ""
"Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-"
"forsøgt transaktioner."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10025,13 +10057,13 @@ msgstr ""
"Antallet af tråde der har taget mere end slow_launch_time sekunder at "
"oprette."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10041,23 +10073,23 @@ msgstr ""
"denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size "
"systemvariablen."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Antallet af sorteringer lavet med ranges."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Antallet af sorterede rækker."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10069,7 +10101,7 @@ msgstr ""
"optimere dine forespørgsler, og derefter enten opdele din tabel eller "
"tabeller, eller bruge replikation."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10079,11 +10111,11 @@ msgstr ""
"som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din "
"thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Antallet af i øjeblikket åbne forbindelser."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10095,63 +10127,63 @@ msgstr ""
"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god "
"tråd-implementering.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Antallet af tråde, der ikke sover."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Start Monitor"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Instruktioner/Opsætning"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Færdig med at omordne/redigere diagrammer"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Tilføj diagram"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Omordne/rediger diagrammer"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Opdateringsfrekvens"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Chart columns:"
msgid "Chart columns"
msgstr "Diagramkolonner:"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Fejlhåndtering:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Gendan standardværdi"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Monitorinstruktioner"
-#: server_status.php:1437
+#: server_status.php:1479
#, fuzzy
#| msgid ""
#| "The phpMyAdmin Monitor can assist you in optimizing the server "
@@ -10174,7 +10206,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:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10182,7 +10214,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: \n"
@@ -10217,7 +10249,7 @@ msgstr ""
" nede og køre hen over diagrammet. Dette vill hente statistik fra "
"logs og hjælpe dig til at finde årsagen.
til aktivitetsforøgelsen."
-#: server_status.php:1459
+#: server_status.php:1501
#, fuzzy
#| msgid ""
#| "Please note:\n"
@@ -10242,75 +10274,69 @@ msgstr ""
" der ikke er behov for den længere.\n"
" "
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU-forbrug"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Fjern diagram"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Hukommelsesforbrug"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Brug af swapfil"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Statusvariabel/-ble"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Vælg serie:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Almindeligt overvåget"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "eller indtast variabelnavn:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Vis som forskelsværdi"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Anvend divisor"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Tilføj enhed til dataværdier"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Tilføj denne serie"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Slet serie"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Serier i diagram"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Logstatistik"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Valgt tidsinterval:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10318,20 +10344,20 @@ msgstr ""
"
Vælg fra hvilken log, du ønsker statistikken genereret fra"
"p>Resultaterne er grupperet af forespørgselstekst."
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Forespørgselstype"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d sekund"
msgstr[1] "%d sekunder"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10729,10 +10755,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
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."
+" 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."
#: setup/lib/index.lib.php:292
#, php-format
@@ -10746,8 +10772,8 @@ msgstr ""
"Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og "
"adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for "
"produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan "
-"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %"
-"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
+"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt "
+"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
#: setup/lib/index.lib.php:294
#, php-format
@@ -10792,34 +10818,34 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn."
msgid "Browse foreign values"
msgstr "Bladre i fremmedværdier"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Bruger bogmærke \"%s\" som standard gennemsynsforespørgsel"
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Indsatte række id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Viser som PHP-kode"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Viser SQL-forespørgsel"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Valideret SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene på tabel `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Mærke"
@@ -11561,9 +11587,9 @@ msgid "Current amount of Questions: %s"
msgstr "Aktuel forbindelse"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Vis SQL-forespørgsler"
#: po/advisory_rules.php:16
@@ -11585,7 +11611,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Tøm forespørgsel-mellemlager"
#: po/advisory_rules.php:21
@@ -11773,12 +11799,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Pladsforbrug"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11835,8 +11855,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11945,9 +11965,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Tillader oprettelse af midlertidige tabeller."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11965,13 +11985,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Tillader oprettelse af midlertidige tabeller."
#: po/advisory_rules.php:113
#, php-format
@@ -12003,8 +12025,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Der er ingen rutiner at vise."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12024,7 +12048,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12047,7 +12071,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12056,7 +12080,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12069,8 +12093,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Hvor links til tablerækker skal vises"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12080,8 +12106,8 @@ msgstr "Hvor links til tablerækker skal vises"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12113,10 +12139,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabel"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Hvor links til tablerækker skal vises"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12143,8 +12168,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabel"
#: po/advisory_rules.php:152
msgid ""
@@ -12185,8 +12213,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sorteringsbufferstørrelse"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12206,8 +12236,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sorteringsbufferstørrelse"
#: po/advisory_rules.php:168
#, php-format
@@ -12215,7 +12247,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12235,7 +12267,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Opret tabel"
#: po/advisory_rules.php:176
@@ -12256,10 +12288,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Vis åbne tabeller"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format på importeret fil"
#: po/advisory_rules.php:181
msgid ""
@@ -12282,7 +12314,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format på importeret fil"
#: po/advisory_rules.php:186
@@ -12329,7 +12361,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Nøglemellemlager"
#: po/advisory_rules.php:201
@@ -12347,8 +12379,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Sporing er ikke aktiv."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12407,10 +12441,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time er sat til %d sekund(er)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Forbindelser"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Vedvarende forbindelser"
#: po/advisory_rules.php:221
msgid ""
@@ -12433,9 +12467,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Komprimer forbindelse"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Vedvarende forbindelser"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12457,7 +12491,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Vedvarende forbindelser"
#: po/advisory_rules.php:231
@@ -12471,8 +12505,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format på importeret fil"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12493,7 +12529,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format på importeret fil"
#: po/advisory_rules.php:243
@@ -12520,8 +12556,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool størrelse"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12633,6 +12671,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Pladsforbrug"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Vis åbne tabeller"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Forbindelser"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Komprimer forbindelse"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU-forbrug"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Hukommelsesforbrug"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Brug af swapfil"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/de.po b/po/de.po
index a050c848c1..41ff554f90 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-07 22:28+0200\n"
"Last-Translator: Sven Strickroth \n"
"Language-Team: german \n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Alles anzeigen"
@@ -47,7 +47,7 @@ msgstr "Suche"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Schlüsselname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Beschreibung"
@@ -201,7 +201,7 @@ msgstr "Verweise"
msgid "Comments"
msgstr "Kommentare"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Kommentare"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nein"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Nein"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -347,8 +347,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
-"s um herauszufinden warum."
+"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
+"%s um herauszufinden warum."
#: db_operations.php:584
msgid "Edit or export relational schema"
@@ -356,7 +356,7 @@ msgstr "Beziehungsschema bearbeiten oder exportieren"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -613,8 +613,8 @@ msgstr "Tracking ist nicht aktiviert."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie "
"die %sDokumentation%s."
@@ -626,7 +626,7 @@ msgstr "Ansicht"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikation"
@@ -670,7 +670,7 @@ msgstr "Tabellen mit Überhang auswählen"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportieren"
@@ -732,10 +732,10 @@ msgstr "Verfolgte Tabellen"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -755,7 +755,7 @@ msgstr "Aktualisiert"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -855,11 +855,11 @@ msgstr "Dump wurde in Datei %s gespeichert."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
-"sDokumentation%s zur Lösung diese Problems."
+"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
+"%sDokumentation%s zur Lösung diese Problems."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -903,7 +903,7 @@ msgstr "SQL-Abfrage wurde gelöscht."
msgid "Showing bookmark"
msgstr "Bookmark wird angezeigt"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s wurde gespeichert"
@@ -956,15 +956,15 @@ msgstr "Zur Auswahl anklicken"
msgid "Click to unselect"
msgstr "Zum Abwählen anklicken"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Möchten Sie wirklich diese Abfrage ausführen "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!"
@@ -1040,12 +1040,12 @@ msgstr "Benutzerrechte werden neu geladen"
msgid "Removing Selected Users"
msgstr "Die ausgewählten Benutzer werden gelöscht"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Schliesse"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1053,15 +1053,15 @@ msgstr "Schliesse"
msgid "Edit"
msgstr "Bearbeiten"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Live Traffic Diagramm"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Live Verbindung/Prozess Diagramm"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Live Abfrage Diagramm"
@@ -1072,13 +1072,13 @@ msgstr "Statische Daten"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Insgesamt"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Weitere"
@@ -1108,7 +1108,7 @@ msgstr "Server Traffic (in KiB)"
msgid "Connections since last refresh"
msgstr "Verbindungen seit der letzten Aktualisierung"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Prozesse"
@@ -1126,164 +1126,196 @@ msgstr "Anfragen seit der letzten Aktualisierung"
msgid "Questions (executed statements by the server)"
msgstr "Anfragen (Serverseitig ausgeführte SQL-Befehle)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Abfrage-Statistiken"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Fehler beim Lesen der Konfigurationsdatei"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Abfragen-Cache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Abfragen-Cache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Abfragen-Cache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "CPU-Auslastung"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Arbeitsspeicher"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "System-Swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Durchschnittliche Auslastung"
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "System memory"
msgid "Total memory"
msgstr "Arbeitsspeicher"
-#: js/messages.php:101
+#: js/messages.php:108
#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
msgstr "Arbeitsspeicher"
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Puffer-Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Freier Speicher"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Verwendeter Speicher"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Insgesamt ausgelagert"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Unbenutzte Seiten"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Bytes gesendet"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Bytes empfangen"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Verbindungen"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Anfragen"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Netzwerkverkehr"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Einstellungen"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Skala entfernen"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Titel und Beschriftungen bearbeiten"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Skala dem Raster hinzufügen"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "keine"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Überwachung fortsetzen"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Überwachung pausieren"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log und slow_query_log sind aktiviert."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log ist aktiviert."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log ist aktiviert."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log und general_log sind deaktiviert."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output ist nicht auf TABLE eingestellt."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output ist auf TABLE eingestellt."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1294,12 +1326,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:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1308,30 +1340,30 @@ msgstr ""
"Ursprungswerte zurückgesetzt bei einem Server Neustart."
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Aktiviere %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Deaktiviere %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Setze long_query_time auf %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1339,42 +1371,42 @@ msgstr ""
"Sie können diese Variablen nicht ändern. Bitte melden Sie sich mit einem "
"Root-Benutzer ein, oder kontaktieren Sie Ihren Datenbank-Administrator."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Einstellungen ändern"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Aktuelle Einstellungen"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Schaubild-Titel"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Unterschied"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Geteilt durch %s:"
# Eigenname der MySQL-Funktion
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Vom slow Log"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Vom allgemeinen Log"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analysiere und Lade Protokolle. Dies kann eine Weile dauern."
-#: js/messages.php:158
+#: js/messages.php:165
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 "
@@ -1384,7 +1416,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:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1394,261 +1426,261 @@ msgstr ""
"Befehle in die gleiche Tabelle zusammengefasst, unabhängig von den "
"eingefügten Daten."
-#: js/messages.php:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
"Protokoll-Daten geladen. Innerhalb dieses Zeitaums ausgeführte Abfragen:"
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Springe zur Protokoll-Tabelle"
-#: js/messages.php:163
+#: js/messages.php:170
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."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filter"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filte die Abfragen durch Wort / Regulären Ausdruck:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "Gruppiere die Abfragen und ignoriere Werte in WHERE-Abfragen"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Anzahl der gruppierten Datensätze"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Insgesamt:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Lade Protokolle"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "Aktualisierung der Überwachung fehlgeschlagen"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "Neuladen"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr "Betroffene Zeilen: "
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
"Das Parsen/Einlesen der Konfigutationsdatei ist fehlgeschlagen. Es scheint "
"sich nicht um eine gültige JSON-Kodierung zu handeln."
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importieren"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Aktualisieren"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Advisor"
msgid "Advisor system"
msgstr "Ratgeber"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentation"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Details"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Authentifizierung"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Abbrechen"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Laden"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Bearbeite Anfrage"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Fehler beim Bearbeiten der Anfrage"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Spalte wird gelöscht"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Primärschlüssel wird hinzugefügt"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Datenbanken werden umbenannt"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Lade Datenbank neu"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Datenbank wird kopiert"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Zeichensatz wird geändert"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Die Tabelle muss mindestens eine Spalte haben"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Erzeuge Tabelle"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Tabelle einfügen"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Indexes verbergen"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Indexes anzeigen"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Suche"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Suchergebnisse ausblenden"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Zeige Suchergebnisse"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Durchsehen"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Löschen"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
"Hinweis: Wenn die Date mehrere Tabellen enthält, werden diese in einer "
"einzigen Tabelle zusammengefasst"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "SQL-Querybox ausblenden"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "SQL-Querybox anzeigen"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Es wurden keine Datensätze ausgewählt"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Bearbeiten"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Ausführungszeit der Abfrage"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1656,40 +1688,40 @@ msgstr "Ausführungszeit der Abfrage"
msgid "Save"
msgstr "Speichern"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Suchkriterien ausblenden"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Suchkriterien anzeigen"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorieren"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Spalten hinzufügen"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Wählen Sie den referenzierten Schlüssel"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Wähle Fremdschlüssel"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Anzuzeigende Spalte auswählen"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1697,61 +1729,61 @@ msgstr ""
"Sie haben die Änderungen im Layout nicht gespeichert. Sie werden verworfen "
"wenn Sie diese nicht speichern. Wünschen Sie fortzufahren?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Option hinzufügen zu Spalte "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Zur Umordnung ziehen"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Zur Anordnung anklicken"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Klicken zum aus- bzw. abwählen"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Passwort generieren"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generieren"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Passwort ändern"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Mehr"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1761,27 +1793,27 @@ msgstr ""
"vorgeschlagen. Die aktuellste Version ist %s, erschienen am %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", aktuellste stabile Version:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "auf dem laufenden Stand"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Fertig"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorherige"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1789,149 +1821,149 @@ msgid "Next"
msgstr "Nächste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Heute"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Januar"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Februar"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "März"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "April"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Juni"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Juli"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "August"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "September"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "November"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Sonntag"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Montag"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Dienstag"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Mittwoch"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Donnerstag"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Freitag"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1939,84 +1971,84 @@ msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Wo"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Stunde"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekunde"
@@ -2276,8 +2308,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@@ -2424,7 +2456,7 @@ msgstr "freigegeben"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabellen"
@@ -2505,7 +2537,7 @@ msgstr ""
"Konfiguration."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2554,7 +2586,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-Befehl"
@@ -2592,7 +2624,7 @@ msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Aktualisieren"
@@ -2613,7 +2645,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Messen"
@@ -2719,7 +2751,7 @@ msgstr "Zum Umschalten anklicken"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5365,8 +5397,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@@ -5573,7 +5605,7 @@ msgstr "Nach Schlüssel sortieren"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5638,7 +5670,7 @@ msgid "The row has been deleted"
msgstr "Der Datensatz wurde gelöscht"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Beenden"
@@ -5655,7 +5687,7 @@ msgid "total"
msgstr "insgesamt"
# (s is the abbreviation of "Sekunde", sec is it not (according to International System of Units), so we wrote the complete one.)
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Die Abfrage dauerte %01.4f Sekunden"
@@ -5728,7 +5760,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puffer-Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB-Status"
@@ -6131,8 +6163,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@@ -6227,28 +6259,28 @@ msgid "Display MIME types"
msgstr "MIME-Typen anzeigen"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Erstellungszeit"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Server Version"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP-Version"
@@ -6463,51 +6495,51 @@ msgid "Generated by"
msgstr "Erstellt von"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier "
"können Sie:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
"Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Gehe zur Datenbank"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr "Einstellung für %s bearbeiten"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Gehe zur Tabelle"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr "Struktur von %s"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Gehe zum View"
@@ -6971,14 +7003,14 @@ msgid "Slave status"
msgstr "Slave-Status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Wert"
@@ -7186,7 +7218,7 @@ msgid "Returns"
msgstr "Rückgabe-Wert"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Zeit"
@@ -7627,12 +7659,12 @@ msgid "Synchronize"
msgstr "Gleiche ab"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binäres Protokoll"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variablen"
@@ -7686,11 +7718,11 @@ msgstr "Werte löschen"
msgid "Columns"
msgstr "Spalten"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "SQL-Abfrage speichern"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
@@ -8114,7 +8146,7 @@ msgstr "Protokoll-Version"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Benutzer"
@@ -8565,17 +8597,17 @@ msgstr "Datei existiert nicht"
msgid "Select binary log to view"
msgstr "Binäres Protokoll zur Anzeige auswählen"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Dateien"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Zeige die SQL-Abfragen verkürzt an"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Zeige die SQL-Abfragen vollständig an"
@@ -8973,8 +9005,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
@@ -9106,7 +9138,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Zeige den Master-Status"
@@ -9258,12 +9290,12 @@ msgstr ""
"Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. "
"Möchten Sie ihn konfigurieren?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Der Thread %s wurde erfolgreich abgebrochen."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9271,115 +9303,115 @@ msgstr ""
"phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich "
"bereits geschlossen."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Bezeichner"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Abfragen-Cache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Prozesse"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Temporäre Daten"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Verzögertes Einfügen (delayed inserts)"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Schlüssel-Cache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Tabellenverknüpfungen (joins)"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortierung"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaktions-Koordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Alle Tabellen aktualisieren (und schließen)"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Zeige alle offenen Tabellen"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Zeige alle Slave-Hosts"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Zeige den Slave-Status"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Den Abfragen-Cache leeren. (FLUSH)"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Laufzeit-Informationen"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Alle Status Variablen"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Überwachung"
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr "Ratgeber"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Aktualisierungs-Intervall: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Beinhalten das Wort:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Zeige nur Warn-Werte"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Nach Kategorie filtern..."
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr "Zeige unformatierte Werte"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Verwandte Links:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Query Analyzer"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Einführung"
-#: server_status.php:764
+#: server_status.php:806
#, fuzzy
#| msgid ""
#| "The Advisor system can provide recommendations on server variables by "
@@ -9420,44 +9452,44 @@ msgstr ""
"Verbesserungen gab."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Verbindungen seit Start: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "pro Stunde"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "pro Minute"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "pro Sekunde"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Angaben"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Netzwerk-Datenverkehr seit Start: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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 um %2$s gestartet."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9465,18 +9497,18 @@ msgstr ""
"Dieser MySQL Server arbeitet als Master und Slave im "
"Replikations-Prozess."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Master im Replikations-"
"Prozess."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Slave im Replikations-Prozess."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9484,11 +9516,11 @@ msgstr ""
"Für weitere Informationen über den Replikations-Status auf dem Server siehe "
"Abschnitt Replikation."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Replikations-Status"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9497,35 +9529,35 @@ msgstr ""
"wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server "
"ausgegeben werden, falsch sein."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Empfangen"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Gesendet"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. gleichzeitige Verbindungen"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Fehlversuche"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Abgebrochen"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Befehl"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9533,12 +9565,12 @@ msgstr ""
"Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen "
"Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden."
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9548,19 +9580,19 @@ msgstr ""
"des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre "
"Datei verwendet haben um die Statements der Transaktion zu speichern."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben."
-#: server_status.php:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9572,11 +9604,11 @@ msgstr ""
"Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre "
"Tabellen im Speicher erzeugt werden statt auf der Festplatte."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9584,7 +9616,7 @@ msgstr ""
"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei "
"der Ausführung von Statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9592,7 +9624,7 @@ msgstr ""
"Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei "
"denen ein Fehler auftrat (z. B. duplicate key)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9600,23 +9632,23 @@ msgstr ""
"Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne "
"Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Anzahl der ausgeführten FLUSH-Befehle."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Anzahl der Anfragen, ein COMMIT auszuführen."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9626,7 +9658,7 @@ msgstr ""
"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle "
"kennt. Dieser Vorgang wird "discovery" genannt."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9637,7 +9669,7 @@ msgstr ""
"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert "
"ist)."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9646,7 +9678,7 @@ msgstr ""
"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und "
"Tabellen korrekt indiziert sind."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9657,7 +9689,7 @@ msgstr ""
"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, "
"wenn Sie einen Index-Scan durchführen."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9666,7 +9698,7 @@ msgstr ""
"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung "
"von ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9679,7 +9711,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9692,36 +9724,36 @@ msgstr ""
"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile "
"aus den Indexen ziehen, die Sie haben."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Anzahl der als "dirty" markierten Seiten."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Anzahl der unbenutzten Seiten."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9731,7 +9763,7 @@ msgstr ""
"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder "
"entfernt werden können."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9743,11 +9775,11 @@ msgstr ""
"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Die Größe des Puffer-Pools in Seiten."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9755,7 +9787,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9763,11 +9795,11 @@ msgstr ""
"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB "
"eine Tabelle komplett sequentiell durchsucht."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9775,7 +9807,7 @@ msgstr ""
"Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen "
"konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9790,53 +9822,53 @@ msgstr ""
"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist "
"sollte dieser Wert klein sein."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Bisher ausgeführte fsync()-Operationen."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Momentan anstehende fsync()-Operationen."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Momentan anstehende Lesezugriffe."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Momentan anstehende Schreizugriffe."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Wieviel Daten bisher gelesen wurden, in Byte."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Wie oft Daten gelesen wurden."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Wie oft Daten geschrieben wurden."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Wieviel Daten bisher geschrieben wurden, in Byte."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Anzahl der ausgeführten doublewrite Zugriffe."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9844,35 +9876,35 @@ msgstr ""
"Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein "
"war und deshalb gewartet wurde das er geleert wird."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Anstehende fsyncs für die Protokoll-Datei."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Anzahl erstellter Seiten."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9881,55 +9913,55 @@ msgstr ""
"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte "
"umzurechnen."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Anzahl gelesener Seiten."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Anzahl geschriebener Seiten."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Momentan anstehende Zeilen-Sperren."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9938,7 +9970,7 @@ msgstr ""
"auf die Platte zurück geschrieben (flush) wurden; auch bekannt als "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9946,7 +9978,7 @@ msgstr ""
"Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert "
"kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9954,11 +9986,11 @@ msgid ""
msgstr ""
"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -9969,17 +10001,17 @@ msgstr ""
"Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet "
"werden."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
"Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben."
-#: server_status.php:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9989,7 +10021,7 @@ msgstr ""
"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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -9997,13 +10029,13 @@ msgstr ""
"Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig "
"benutzt wurden."
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10011,20 +10043,20 @@ msgstr ""
"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist "
"Ihre table_cache-Variable wahrscheinlich zu niedrig."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Anzahl der geöffneten Dateien."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Anzahl der geöffneten Tabellen."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -10034,19 +10066,19 @@ msgstr ""
"Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY "
"CACHE - Abfrage beseitigt werden können."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Freier Speicher im Abfragen-Cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Abfrage-Cache-Zugriffsrate."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10059,7 +10091,7 @@ msgstr ""
"recently used), d. h. es wird stets die Abfrage gelöscht, die am "
"längsten unbenutzt im Cache lag."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10067,19 +10099,19 @@ msgstr ""
"Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder "
"aufgrund der query_cache_type Einstellung)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Die Anzahl der Abfragen im Cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Der Status der ausfallsicheren Replikation."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10087,13 +10119,13 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10102,7 +10134,7 @@ msgstr ""
"Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die "
"Indizes der Tabellen sorgfältig überprüft werden.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10110,16 +10142,16 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10127,13 +10159,13 @@ msgstr ""
"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread "
"wiederversuchten Transaktionen."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10141,12 +10173,12 @@ msgstr ""
"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu "
"verbinden."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10156,25 +10188,25 @@ msgstr ""
"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, "
"sort_buffer herauf zu setzen."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Anzahl der sortierten Datensätze."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Wie oft eine Tabellensperre sofort erlangt wurde."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10186,7 +10218,7 @@ msgstr ""
"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle"
"(n) zerteilen oder Replikation benutzen."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10196,11 +10228,11 @@ msgstr ""
"Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, "
"sollte der thread_cache_size erhöht werden."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Anzahl der momentan offenen Verbindungen."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10212,43 +10244,43 @@ msgstr ""
"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare "
"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Anzahl der Prozesse, die nicht schlafen."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Überwachung starten"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Einführung/Einrichtung"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Umordnen/bearbeiten der Schaubilder beendet."
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Schaubild hinzufügen"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Schaubilder umordnen/bearbeiten"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Aktualisierungs-Intervall"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "Schaubild-Spalten"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr "Schaubild-Anordnung"
-#: server_status.php:1431
+#: server_status.php:1473
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."
@@ -10257,15 +10289,15 @@ msgstr ""
"Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung "
"eingerichtet haben."
-#: server_status.php:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr "Zurücksetzen"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Einführung zur Überwachung"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10280,7 +10312,7 @@ msgstr ""
"general_log viele Daten produzieren und die Serverauslastung um bis zu 15% "
"erhöhen kann."
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10288,7 +10320,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: Ok, you are good to go! Once you click "
@@ -10321,7 +10353,7 @@ msgstr ""
"Statistiken aus den Protokollen laden um Sie bei der Auffindung der "
"Aktivitätsspitze zu unterstützen.
"
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10334,76 +10366,70 @@ msgstr ""
"Statistiken aus den Logs ein sehr aufwändiger Prozess ist. Deshalb ist es "
"ratsam, nur einen kleinen Zeitraum auszuwählen."
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU-Auslastung"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Skala entfernen"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Speicher-Auslastung"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Auslagerungsdatei-Nutzung"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Status Variable(n)"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Serie auswählen:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Allgemein-überwacht"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "oder Variablen-Namen eingeben:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Den Wert als Unterschied zeigen"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Divisor hinzufügen"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Einheiten an Datenwerte anfügen."
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Diese Serie hinzufügen"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Serien löschen"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Serien im Schaubild"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Protokoll Statistik"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Ausgewählte Zeit-Spanne:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab"
-#: server_status.php:1546
+#: server_status.php:1583
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:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10411,18 +10437,18 @@ msgstr ""
"
Bitte wählen Sie das log aus, von dem Statistiken generiert werden "
"sollen
Ergebnisse sind nach Abfrage-Text zusammengefasst."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Query Analyzer"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d Sekunde"
msgstr[1] "%d Sekunden"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10846,8 +10872,8 @@ msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
-"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
-"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
+"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
+"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
#: setup/lib/index.lib.php:294
#, php-format
@@ -10894,34 +10920,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Fremdschlüsselwerte ansehen"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID der eingefügten Zeile: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Ansicht als PHP Code"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Ansicht als SQL Abfrage"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Geprüftes SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Titel"
@@ -11670,9 +11696,9 @@ msgid "Current amount of Questions: %s"
msgstr "Aktuelle Verbindung"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Zeige SQL Anfragen"
#: po/advisory_rules.php:16
@@ -11694,7 +11720,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Den Abfragen-Cache leeren. (FLUSH)"
#: po/advisory_rules.php:21
@@ -11882,12 +11908,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Speicherplatzverbrauch"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11944,8 +11964,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12054,9 +12074,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Erlaubt das Erstellen temporärer Tabellen."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12074,13 +12094,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Erlaubt das Erstellen temporärer Tabellen."
#: po/advisory_rules.php:113
#, php-format
@@ -12112,8 +12134,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Es sind keine Prozeduren zum Anzeigen vorhanden."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12133,7 +12157,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12156,7 +12180,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12165,7 +12189,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12178,8 +12202,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Wo die Datensatz-Links angezeigt werden sollen"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12189,8 +12215,8 @@ msgstr "Wo die Datensatz-Links angezeigt werden sollen"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12222,10 +12248,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s Tabelle"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Wo die Datensatz-Links angezeigt werden sollen"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12252,8 +12277,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s Tabelle"
#: po/advisory_rules.php:152
msgid ""
@@ -12294,8 +12322,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Größe des Sortierungspuffers"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12315,8 +12345,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Größe des Sortierungspuffers"
#: po/advisory_rules.php:168
#, php-format
@@ -12324,7 +12356,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12344,7 +12376,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Erzeuge Tabelle"
#: po/advisory_rules.php:176
@@ -12365,10 +12397,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Zeige alle offenen Tabellen"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Dateiformat"
#: po/advisory_rules.php:181
msgid ""
@@ -12391,7 +12423,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Dateiformat"
#: po/advisory_rules.php:186
@@ -12438,7 +12470,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Schlüssel-Cache"
#: po/advisory_rules.php:201
@@ -12456,8 +12488,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Tracking ist nicht aktiviert."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12516,10 +12550,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time ist auf %d Sekunde(n) eingestellt."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Verbindungen"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Persistente Verbindung"
#: po/advisory_rules.php:221
msgid ""
@@ -12542,9 +12576,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Verbindung komprimieren"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Persistente Verbindung"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12566,7 +12600,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Persistente Verbindung"
#: po/advisory_rules.php:231
@@ -12580,8 +12614,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Dateiformat"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12602,7 +12638,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Dateiformat"
#: po/advisory_rules.php:243
@@ -12629,8 +12665,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Größe des Puffer-Pools"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12742,6 +12780,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Speicherplatzverbrauch"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Zeige alle offenen Tabellen"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Verbindungen"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Verbindung komprimieren"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU-Auslastung"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Speicher-Auslastung"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Auslagerungsdatei-Nutzung"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "XLS Mappe für Excel 97-2003"
@@ -12779,8 +12842,8 @@ msgstr ""
#~ "directory %s."
#~ msgstr ""
#~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte "
-#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %"
-#~ "s."
+#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis "
+#~ "%s."
#~ msgid "The following queries have been executed:"
#~ msgstr "Die folgenden Abfragen wurden ausgeführt:"
diff --git a/po/el.po b/po/el.po
index aa9ced46f6..d8f005aefc 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-29 14:17+0200\n"
"Last-Translator: Panagiotis Papazoglou \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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Εμφάνιση όλων"
@@ -47,7 +47,7 @@ msgstr "Αναζήτηση"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Όνομα κλειδιού"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Περιγραφή"
@@ -201,7 +201,7 @@ msgstr "Σύνδεση με"
msgid "Comments"
msgstr "Σχόλια"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Σχόλια"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Όχι"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Όχι"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -613,11 +613,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
-"sτεκμηρίωση%s."
+"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
+"%sτεκμηρίωση%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -626,7 +626,7 @@ msgstr "Προβολή"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Αναπαραγωγή"
@@ -669,7 +669,7 @@ msgstr "Επιλογή πινάκων με περίσσεια"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Εξαγωγή"
@@ -731,10 +731,10 @@ msgstr "Παρακολουθούμενοι πίνακες"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -754,7 +754,7 @@ msgstr "Ενημερώθηκε"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Κατάσταση"
@@ -853,11 +853,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
-"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
+"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
+"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -900,7 +900,7 @@ msgstr "Η ετικέτα διεγράφη."
msgid "Showing bookmark"
msgstr "Εμφάνιση σελιδοδείκτη"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε"
@@ -954,15 +954,15 @@ msgstr "Πατήστε για επιλογή"
msgid "Click to unselect"
msgstr "Πατήστε για απεπιλογή"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Θέλετε να εκτελέσετε την εντολή "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!"
@@ -1038,12 +1038,12 @@ msgstr "Επαναφόρτωση δικαιωμάτων"
msgid "Removing Selected Users"
msgstr "Διαγραφή των επιλεγμένων χρηστών"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Κλείσιμο"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1051,15 +1051,15 @@ msgstr "Κλείσιμο"
msgid "Edit"
msgstr "Επεξεργασία"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Διάγραμμα τρέχουσας κυκλοφορίας"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Διάγραμμα τρέχοντος ερωτήματος"
@@ -1070,13 +1070,13 @@ msgstr "Στατικά δεδομένα"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Σύνολο"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Άλλα"
@@ -1106,7 +1106,7 @@ msgstr "Κυκλοφορία Διακομιστή (σε KB)"
msgid "Connections since last refresh"
msgstr "Συνδέσεις από την τελευταία ανανέωση"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Διεργασίες"
@@ -1124,172 +1124,204 @@ msgstr "Ερωτήσεις από την τελευταία ανανέωση"
msgid "Questions (executed statements by the server)"
msgstr "Ερωτήσεις (εκτελεσμένες δηλώσεις από τον διακομιστή)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Στατιστικά ερωτήματος"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Λανθάνουσα μνήμη ερωτήματος"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Χρήση CPU Συστήματος"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Μνήμη συστήματος"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Αδράνεια συστήματος"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Μέσο φορτίο"
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "System memory"
msgid "Total memory"
msgstr "Μνήμη συστήματος"
-#: js/messages.php:101
+#: js/messages.php:108
#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
msgstr "Μνήμη συστήματος"
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
#, fuzzy
#| msgid "System memory"
msgid "Free memory"
msgstr "Μνήμη συστήματος"
-#: js/messages.php:104
+#: js/messages.php:111
#, fuzzy
#| msgid "System memory"
msgid "Used memory"
msgstr "Μνήμη συστήματος"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Σύνολο"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Ελέυθερες σελίδες"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Ελήφθησαν"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Συνδέσεις"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Ερωτήσεις"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Κίνηση"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Ρυθμίσεις"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Απομάκρυνση διαγράμματος"
-#: js/messages.php:121
+#: js/messages.php:128
#, fuzzy
#| msgid "Edit labels and series"
msgid "Edit title and labels"
msgstr "Επεξεργασία ετικετών και σειρών"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Προσθήκη διαγράμματος στο πλέγμα"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Καμία"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Επανεκίννηση εποπτείας"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Παύση εποπτείας"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "Το general_log και το slow_query_log είναι ενεργοποιημένα."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "Το general_log είναι ενεργοποιημένο."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "Το slow_query_log είναι ενεργοποιημένα."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "Το slow_query_log και το general_log είναι απενεργοποιημένα."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "Το log_output δεν έχει οριστεί στο TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "Το log_output έχει οριστεί στο TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1301,12 +1333,12 @@ msgstr ""
"ορίσετε το long_query_time μεταξύ 0-2 δευτερόλεπτα, κάτι που εξαρτάται από "
"το σύστημά σας."
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)."
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1315,30 +1347,30 @@ msgstr ""
"προεπιλογές με την επανεκκίνηση του διακομιστή:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Ενεργοποίηση %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Απενεργοποίηση %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Ορισμός του long_query_time σε %dδ"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1347,41 +1379,41 @@ msgstr ""
"Συνδεθείτε ως λογαριασμός root ή επικοινωνήστε με τον διαχειριστή της βάσης "
"δεδομένων σας."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Αλλαγή ρυθμίσεων"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Τρέχουσες ρυθμίσεις"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Τίτλος Διαγράμματος"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Διαφορικός"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Διαιρεμένος με %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Από την αργή καταγραφή"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Από την γενική καταγραφή"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Ανάλυση & φόρτωση καταγραφών. Αυτό ίσως διαρκέσει λίγο."
-#: js/messages.php:158
+#: js/messages.php:165
#, fuzzy
#| msgid ""
#| "This columns shows the amount of identical queries that are grouped "
@@ -1396,7 +1428,7 @@ msgstr ""
"ομαδοποιήθηκαν. Ωστόσο, μόνο το Κείμενο SQL συγκρίνεται έτσι οι ιδιότητες "
"των ερωτημάτων όπως ο χρόνο εκκίνησης μπορεί να διαφέρουν."
-#: js/messages.php:159
+#: js/messages.php:166
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,17 +1437,17 @@ msgstr ""
"Αφού επιλέχθηκε η ομαδοποίηση των εντολών INSERT, τα ερωτήματα INSERT εντός "
"του ίδιου πίνακα επίσης ομαδοποιηούνται ανεξάρτητα από εισαγόμενα δεδομένα."
-#: js/messages.php:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
"Τα δεδομένα καταγραφής φορτώθηκαν. Τα ερωτήματα που εκτελέστηκαν σε αυτή την "
"επέκταση χρόνου:"
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Μετάβαση στον πίνακα Καταγραφής"
-#: js/messages.php:163
+#: js/messages.php:170
#, fuzzy
#| msgid "Log analysed, but not data found in this time span."
msgid "Log analysed, but no data found in this time span."
@@ -1423,245 +1455,245 @@ msgstr ""
"Η καταγραφή αναλύθηκε αλλά δεν βρέθηκαν δεδομένα σε αυτή την επέκταση χρόνου."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Φίλτρα"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Φίλτρο"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Φιλτράρισμα ερωτημάτων ανά λέξη/κανονική έκφραση:"
-#: js/messages.php:170
+#: js/messages.php:177
#, fuzzy
#| msgid "Group queries, ignoring variable data in WHERE statements"
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
"Ομαδοποίηση ερωτημάτων, αγνοώντας τα δεδομένα μεταβλητής στις δηλώσεις WHERE"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Άθροισμα ομαδοποιημένων γραμμών:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Σύνολο:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Φόρτωση καταγραφών"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Επαναφόρτωση"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Εισαγωγή"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ενημέρωση Ερωτήματος"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor system"
msgstr "Εφαρμογή διαιρέτη"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Τεκμηρίωση"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Λεπτομέρειες"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Πιστοποιίηση"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Άκυρο"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Φόρτωση"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Προώθηση Αιτήματος"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Σφάλμα στην Προώθηση του Αιτημάτος"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Διαγραφή Στήλης"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Προσθήκη Πρωτεύοντος Κλειδιού"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Εντάξει"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Μετονομασία βάσεων δεδομένων"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Επαναφόρτωση βάσεων δεδομένων"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Αντιγραφή βάσης δεδομένων"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Αλλαγή Συνόλου χαρακτήρων"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Δημιουργία Πίνακα"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Εισαγωγή Πίνακα"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Απόκρυψη ευρετηρίων"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Εμφάνιση ευρετηρίων"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Αναζήτηση"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Προβολή αποτελεσμάτων αναζήτησης"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Αναζήτηση"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Διαγραφή"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
"Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!"
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Απόκρυψη παραθύρου ερωτήματος"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Προβολή παραθύρου ερωτήματος"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Δεν επιλέχθηκαν γραμμές"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Αλλαγή"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Χρόνος εκτέλεσης ερωτήματος"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1669,40 +1701,40 @@ msgstr "Χρόνος εκτέλεσης ερωτήματος"
msgid "Save"
msgstr "Αποθήκευση"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Απόκρυψη κριτηρίων αναζήτησης"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Προβολή κριτηρίων αναζήτησης"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Παράληψη"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Προσθήκη στηλών"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Επιλέξτε αναφερθέν κλειδί"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Επιλέξτε Μη Διακριτό Κλειδί"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Επιλέξτε στήλη για εμφάνιση"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1710,59 +1742,59 @@ msgstr ""
"Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. "
"Θέλετε να συνεχίσετε;"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Προσθήκη επιλογής για τη στήλη "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Σύρτε για ανακατανομή"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Πατήστε για ταξινόμηση"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Πατήστε για εναλλαγή επισήμανσης"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Πατήστε το προς τα κάτω βέλος για εναλλαγή της εμφάνισης στηλών"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Δημιουργία κωδικού πρόσβασης"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Παραγωγή"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Αλλαγή Κωδικού Πρόσβασης"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Περισσότερα"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1772,27 +1804,27 @@ msgstr ""
"εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", τελευταία έκδοση:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "ενημερωμένο"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Ολοκληρώθηκε"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Προηγούμενο"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1800,149 +1832,149 @@ msgid "Next"
msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Σήμερα"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Ιανουαρίου"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Φεβρουαρίου"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Μαρτίου"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Απριλίου"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Μαΐου"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Ιουνίου"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Ιουλίου"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Αυγούστου"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Σεπτεμβρίου"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Οκτωβρίου"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Νοεμβρίου"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Δεκ"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Κυριακή"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Δευτέρα"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Τρίτη"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Τετάρτη"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Πέμπτη"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Παρασκευή"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Σάββατο"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1950,84 +1982,84 @@ msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Σάβ"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Κυ"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Δε"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Τρ"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Τε"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Πε"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Πα"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Σα"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Ώρα"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Λεπτό"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Δευτερόλεπτο"
@@ -2287,8 +2319,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@@ -2437,7 +2469,7 @@ msgstr "κοινόχρηστο"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Πίνακες"
@@ -2518,7 +2550,7 @@ msgstr ""
"σας."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Διακομιστής"
@@ -2567,7 +2599,7 @@ msgid "Documentation"
msgstr "Τεκμηρίωση"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Εντολή SQL"
@@ -2605,7 +2637,7 @@ msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Ανανέωση"
@@ -2626,7 +2658,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Εσωτερικό"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Δημιουργία προφίλ"
@@ -2732,7 +2764,7 @@ msgstr "Πατήστε για εναλλαγή"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5403,8 +5435,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@@ -5610,7 +5642,7 @@ msgstr "Ταξινόμηση ανά κλειδί"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5674,7 +5706,7 @@ msgid "The row has been deleted"
msgstr "Η εγγραφή έχει διαγραφεί"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Τερματισμός"
@@ -5690,7 +5722,7 @@ msgstr "Εμφάνιση εγγραφών"
msgid "total"
msgstr "συνολικά"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα"
@@ -5764,7 +5796,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Κατάσταση InnoDB"
@@ -6002,8 +6034,8 @@ msgid ""
"Documentation and further information about PBMS can be found on %sThe "
"PrimeBase Media Streaming home page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %"
-"sΙστοσελίδα του PrimeBase Media Streaming%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην "
+"%sΙστοσελίδα του PrimeBase Media Streaming%s."
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
msgid "Related Links"
@@ -6172,11 +6204,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
-"sΙστοσελίδα του PrimeBase XT%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
+"%sΙστοσελίδα του PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6268,28 +6300,28 @@ msgid "Display MIME types"
msgstr "Διαθέσιμοι τύποι MIME"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Φιλοξενητής"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Χρόνος δημιουργίας"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Έκδοση διακομιστή"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Έκδοση PHP"
@@ -6505,50 +6537,50 @@ msgid "Generated by"
msgstr "Δημιουργήθηκε από"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Μετάβαση στη βάση δεδομένων"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Απολεσθέντα δεδομένα για %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Μετάβαση στον πίνακα"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Μόνο η δομή"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Μετάβαση στην προβολή"
@@ -7008,14 +7040,14 @@ msgid "Slave status"
msgstr "Κατάσταση δευτερεύοντος"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Μεταβλητή"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Τιμή"
@@ -7223,7 +7255,7 @@ msgid "Returns"
msgstr "Επιστροφές"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Χρόνος"
@@ -7659,12 +7691,12 @@ msgid "Synchronize"
msgstr "Συγχρονισμός"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Δυαδικό αρχείο καταγραφής"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Μεταβλητές"
@@ -7717,11 +7749,11 @@ msgstr "Καθάρισμα"
msgid "Columns"
msgstr "Στήλες"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
@@ -7995,8 +8027,8 @@ msgstr ""
"επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν "
"θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» "
"αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή "
-"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και "
-"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()."
+"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP "
+"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()."
#: libraries/transformations/text_plain__external.inc.php:10
msgid ""
@@ -8138,7 +8170,7 @@ msgstr "Έκδοση πρωτοκόλλου"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Χρήστης"
@@ -8260,8 +8292,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
-"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
-"sεδώ%s."
+"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
+"%sεδώ%s."
#: main.php:314
msgid ""
@@ -8590,17 +8622,17 @@ msgstr "Το αρχείο δεν υπάρχει"
msgid "Select binary log to view"
msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Αρχεία"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Πλήρης εμφάνιση ερωτημάτων"
@@ -8998,8 +9030,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@@ -9133,7 +9165,7 @@ msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Προβολή κατάστασης πρωτεύοντος"
@@ -9285,12 +9317,12 @@ msgstr ""
"Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία "
"αναπαραγωγής. Θέλετε να τον ρυθμίσετε;"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Η λειτουργία %s διεκόπη."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9298,119 +9330,119 @@ msgstr ""
"Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη "
"σταματήσει."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Χειριστής"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Λανθάνουσα μνήμη ερωτήματος"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Διεργασίες"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Προσωρινά δεδομένα"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Καθυστερημένες εισαγωγές"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Λανθάνουσα μνήμη κλειδιού"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Ενώσεις"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Ταξινόμηση"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Συντονιστής κινήσεων"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Εμφάνιση ανοιχτών πινάκων"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Εμφάνιση δευτερευόντων διακομιστών"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Εμφάνιση κατάστασης δευτερεύοντος"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Πληροφορίες εκτέλεσης"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Όλες οι μεταβλητές κατάστασης"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Εποπτεία"
-#: server_status.php:648
+#: server_status.php:690
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor"
msgstr "Εφαρμογή διαιρέτη"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Ρυθμός ανανέωσης: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Να περιλαμβάνει τη λέξη:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Εμφάνιση μόνο τιμών ειδοποίησης"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Φιλτράρισμα ανά κατηγορία..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Εμφάνιση μόνο τιμών ειδοποίησης"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Σχετικοί σύνδεσμοι:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Αναλυτής ερωτήματος"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Εισαγωγή"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9425,44 +9457,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Ερωτήσεις από την εκκίνηση: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "ανά ώρα"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "ανά λεπτό"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "ανά δευτερόλεπτο"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Δηλώσεις"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9470,19 +9502,19 @@ msgstr ""
"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε "
"μια αναπαραγωγική διαδικασία."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική"
"b> διαδικασία."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια "
"αναπαραγωγική διαδικασία."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9490,11 +9522,11 @@ msgstr ""
"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, "
"επισκεφτείτε τον τομέα αναπαραγωγής."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Κατάσταση αναπαραγωγής"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9503,35 +9535,35 @@ msgstr ""
"έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να "
"είναι εσφαλμένες."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Ελήφθησαν"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Εστάλησαν"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Αποτυχημένες προσπάθειες"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Ακυρωμένες συνδέσεις"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "Κωδικός"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Εντολή"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9539,12 +9571,12 @@ msgstr ""
"Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να "
"κλείσει σωστά τη σύνδεση."
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9554,20 +9586,20 @@ msgstr ""
"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν "
"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα "
"μνήμη καταγραφής."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
"Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή "
"MySQL."
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9579,11 +9611,11 @@ msgstr ""
"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι "
"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9591,7 +9623,7 @@ msgstr ""
"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από "
"τον διακομιστή κατά την εκτέλεσε δηλώσεων."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9599,7 +9631,7 @@ msgstr ""
"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις "
"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9608,23 +9640,23 @@ msgstr ""
"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT "
"DELAYED χρησιμοποιεί της δική του διεργασία."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9635,7 +9667,7 @@ msgstr ""
"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που "
"βρέθηκαν."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9646,7 +9678,7 @@ msgstr ""
"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει "
"ευρετήριο."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9655,7 +9687,7 @@ msgstr ""
"είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές "
"σας έχουν κάνει σωστά ευρετήρια."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9665,7 +9697,7 @@ msgstr ""
"κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα "
"περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9674,7 +9706,7 @@ msgstr ""
"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής "
"ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9687,7 +9719,7 @@ msgstr ""
"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα "
"κλειδιά."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9699,37 +9731,37 @@ msgstr ""
"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν "
"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Ο αριθμός των μη καθαρώ σελίδων."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για "
"εκκαθάριση."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Ο αριθμός των ελεύθερων σελίδων."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9739,7 +9771,7 @@ msgstr ""
"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να "
"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9751,11 +9783,11 @@ msgstr ""
"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9764,7 +9796,7 @@ msgstr ""
"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά "
"με τυχαία σειρά."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9772,11 +9804,11 @@ msgstr ""
"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9784,7 +9816,7 @@ msgstr ""
"Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει "
"από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9799,55 +9831,55 @@ msgstr ""
"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή "
"πρέπει να είναι μικρή."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
"που γράφτηκαν για αυτό το σκοπό."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
"που γράφτηκαν για αυτό το σκοπό."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9855,36 +9887,36 @@ msgstr ""
"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer "
"καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
"Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Ο αριθμός των δημιουργηθέντων σελίδων."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9893,55 +9925,55 @@ msgstr ""
"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη "
"μετατροπή σε bytes."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Ο αριθμός των αναγνωσμένων σελίδων."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Ο αριθμός των εγεγγραμμένων σελίδων."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε "
"χιλιοστοδευτερόλεπτα."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9950,7 +9982,7 @@ msgstr ""
"αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9959,7 +9991,7 @@ msgstr ""
"Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση "
"λανθάνουσα μνήμη κλειδιού χρησιμοποιείται."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9969,12 +10001,12 @@ msgstr ""
"τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι "
"σε χρήση με μια φορά."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -9985,16 +10017,16 @@ msgstr ""
"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως "
"Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10005,7 +10037,7 @@ msgstr ""
"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 "
"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10013,12 +10045,12 @@ msgstr ""
"Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση "
"του διακομιστή."
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10026,21 +10058,21 @@ msgstr ""
"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι "
"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για "
"καταγραφή)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -10050,19 +10082,19 @@ msgstr ""
"ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας "
"την εντολή FLUSH QUERY CACHE."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10076,7 +10108,7 @@ msgstr ""
"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να "
"απομακρύνει από τη λανθάνουσα μνήμη."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10084,19 +10116,19 @@ msgstr ""
"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν "
"απομνημονεύονται λόγω της ρύθμισης query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10104,13 +10136,13 @@ msgstr ""
"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, "
"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας."
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα "
"παραπομπής."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10119,7 +10151,7 @@ msgstr ""
"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα "
"ευρετήρια των πινάκων σας.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10127,17 +10159,17 @@ msgstr ""
"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά "
"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα "
"συνεργασία SQL."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10145,13 +10177,13 @@ msgstr ""
"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας "
"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές."
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε "
"πρωτεύωντα."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10159,14 +10191,14 @@ msgstr ""
"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time "
"δευτερόλεπτα να δημιουργηθούν."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time "
"δευτερόλεπτα."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10176,23 +10208,23 @@ msgstr ""
"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της "
"μεταβλητής συστήματος sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Ο αριθμός των ταξινομημένων γραμμών."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10204,7 +10236,7 @@ msgstr ""
"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον "
"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10214,11 +10246,11 @@ msgstr ""
"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν "
"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10230,63 +10262,63 @@ msgstr ""
"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης "
"αν έχετε μια καλή εφαρμογή διεργασίας.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Έναρξη Εποπτείας"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Οδηγίες/Εγκατάσταση"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Προσθήκη διαγράμματος"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Ρυθμός ανανέωσης"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Chart columns:"
msgid "Chart columns"
msgstr "Στήλες διαγράμματος:"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Διαχείριση σφάλματος:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Επαναφορά προεπιλεγμένης τιμής"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Οδηγίες Εποπτείας"
-#: server_status.php:1437
+#: server_status.php:1479
#, fuzzy
#| msgid ""
#| "The phpMyAdmin Monitor can assist you in optimizing the server "
@@ -10311,7 +10343,7 @@ msgstr ""
" general_log παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του "
"διακομιστή μέχρι και 15%"
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10319,7 +10351,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: \n"
@@ -10357,7 +10389,7 @@ msgstr ""
"βρείτε τι προκάλεσε αυτή\n"
" την έντονη δραστηριότητα.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10462,18 +10488,18 @@ msgstr ""
"
Επιλέξτε από ποια καταγραφή θέλετε να προκύψουν τα στατιστικά.
Τα "
"αποτελέσματα ομοδοποιούνται ανά κείμενο ερωτήματος."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Αναλυτής ερωτήματος"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d δευτερόλεπτο"
msgstr[1] "%d δευτερόλεπτο"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10850,8 +10876,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
-"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
-"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
+"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
+"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
#: setup/lib/index.lib.php:286
#, php-format
@@ -10949,34 +10975,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Αναζήτηση μη διακριτών τιμών"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Εμφάνιση ως κώδικά PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Εμφάνιση ερωτήματος SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Επικυρωμένη SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Ετικέτα"
@@ -11725,9 +11751,9 @@ msgid "Current amount of Questions: %s"
msgstr "Τρέχουσα σύνδεση"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Εμφάνιση ερωτημάτων SQL"
#: po/advisory_rules.php:16
@@ -11749,7 +11775,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων"
#: po/advisory_rules.php:21
@@ -11937,12 +11963,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Χρήση χώρου"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11999,8 +12019,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12109,9 +12129,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12129,13 +12149,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
#: po/advisory_rules.php:113
#, php-format
@@ -12167,8 +12189,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Δεν υπάρχουν ρουτίνες για εμφάνιση."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12188,7 +12212,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12211,7 +12235,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12220,7 +12244,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12233,8 +12257,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12244,8 +12270,8 @@ msgstr "Που να προβάλονται οι σύνδεσμοι γραμμή
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12277,10 +12303,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s πίνακας"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12307,8 +12332,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s πίνακας"
#: po/advisory_rules.php:152
msgid ""
@@ -12349,8 +12377,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Μέγεθος buffer ταξινόμησης"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12370,8 +12400,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Μέγεθος buffer ταξινόμησης"
#: po/advisory_rules.php:168
#, php-format
@@ -12379,7 +12411,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12399,7 +12431,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Δημιουργία πίνακα"
#: po/advisory_rules.php:176
@@ -12420,10 +12452,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Εμφάνιση ανοιχτών πινάκων"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Μορφή εισαχθέντος αρχείου"
#: po/advisory_rules.php:181
msgid ""
@@ -12446,7 +12478,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Μορφή εισαχθέντος αρχείου"
#: po/advisory_rules.php:186
@@ -12493,7 +12525,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Λανθάνουσα μνήμη κλειδιού"
#: po/advisory_rules.php:201
@@ -12511,8 +12543,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12571,10 +12605,10 @@ msgid "slow_launch_time is set to %s"
msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Συνδέσεις"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Επιμένουσες συνδέσεις"
#: po/advisory_rules.php:221
msgid ""
@@ -12597,9 +12631,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Σύνδεση συμπίεσης"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Επιμένουσες συνδέσεις"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12621,7 +12655,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Επιμένουσες συνδέσεις"
#: po/advisory_rules.php:231
@@ -12635,8 +12669,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Μορφή εισαχθέντος αρχείου"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12657,7 +12693,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Μορφή εισαχθέντος αρχείου"
#: po/advisory_rules.php:243
@@ -12684,8 +12720,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Μέγεθος buffer pool"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12797,6 +12835,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Χρήση χώρου"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Εμφάνιση ανοιχτών πινάκων"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Συνδέσεις"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Σύνδεση συμπίεσης"
+
+#~ msgid "CPU Usage"
+#~ msgstr "Χρήση CPU"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Χρήση Μνήμης"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Χρήση Αδράνειας"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Βιβλίο εργασίας Excel 97-2003 XLS"
diff --git a/po/en_GB.po b/po/en_GB.po
index 2e2e6d572f..37fd5f6212 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-04 21:47+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: english-gb \n"
+"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Show all"
@@ -47,7 +47,7 @@ msgstr "Search"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Description"
@@ -201,7 +201,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "Comments"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Comments"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "No"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Edit or export relational schema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -613,11 +613,11 @@ msgstr "Tracking is not active."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -626,7 +626,7 @@ msgstr "View"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replication"
@@ -668,7 +668,7 @@ msgstr "Check tables having overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
@@ -730,10 +730,10 @@ msgstr "Tracked tables"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -753,7 +753,7 @@ msgstr "Updated"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -851,11 +851,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -895,7 +895,7 @@ msgstr "The bookmark has been deleted."
msgid "Showing bookmark"
msgstr "Showing bookmark"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s created"
@@ -946,15 +946,15 @@ msgstr "Click to select"
msgid "Click to unselect"
msgstr "Click to unselect"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Do you really want to "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1029,12 +1029,12 @@ msgstr "Reloading Privileges"
msgid "Removing Selected Users"
msgstr "Removing Selected Users"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Close"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1042,15 +1042,15 @@ msgstr "Close"
msgid "Edit"
msgstr "Edit"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Live traffic chart"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Live conn./process chart"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Live query chart"
@@ -1061,13 +1061,13 @@ msgstr "Static data"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Other"
@@ -1097,7 +1097,7 @@ msgstr "Server traffic (in KiB)"
msgid "Connections since last refresh"
msgstr "Connections since last refresh"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processes"
@@ -1115,154 +1115,186 @@ msgstr "Questions since last refresh"
msgid "Questions (executed statements by the server)"
msgstr "Questions (executed statements by the server)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Query statistics"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Failed to read configuration file"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Query cache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Query cache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Query cache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "System CPU Usage"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "System memory"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Average load"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Total memory"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Cached memory"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Buffered memory"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Free memory"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Used memory"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Total Swap"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Cached Swap"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Used Swap"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Free Swap"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Bytes sent"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Bytes received"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Connections"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Questions"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Traffic"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Settings"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Remove chart"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Edit title and labels"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Add chart to grid"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Please add at least one variable to the series"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "None"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Resume monitor"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Pause monitor"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log and slow_query_log are enabled."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log is enabled."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log is enabled."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log and general_log are disabled."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output is not set to TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output is set to TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1273,12 +1305,12 @@ msgstr ""
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
"depending on your system."
-#: js/messages.php:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1287,30 +1319,30 @@ msgstr ""
"restart:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Enable %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Disable %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Set long_query_time to %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1318,41 +1350,41 @@ msgstr ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Change settings"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Current settings"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Chart Title"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Differential"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Divided by %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "From slow log"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "From general log"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analysing & loading logs. This may take a while."
-#: js/messages.php:158
+#: js/messages.php:165
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 "
@@ -1362,7 +1394,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:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1372,53 +1404,53 @@ msgstr ""
"same table are also being grouped together, disregarding of the inserted "
"data."
-#: js/messages.php:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr "Log data loaded. Queries executed in this time span:"
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Jump to Log table"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr "Log analyzed, but no data found in this time span."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filters"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filter queries by word/regexp:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "Group queries, ignoring variable data in WHERE clauses"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Sum of grouped rows:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Total:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Loading logs"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "Monitor refresh failed"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
@@ -1428,200 +1460,200 @@ msgstr ""
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "Reload page"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Import"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Update Query"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor system"
msgstr "Apply a divisor"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentation"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Details"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Authentication"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Cancel"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Loading"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Processing Request"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Error in Processing Request"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Dropping Column"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Adding Primary Key"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Renaming Databases"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Reload Database"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Copying Database"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Changing Charset"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Table must have at least one column"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Create Table"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Insert Table"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Hide indexes"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Show indexes"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Searching"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Hide search results"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Show search results"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Browsing"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Deleting"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Hide query box"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Show query box"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "No rows selected"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Change"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Query execution time"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1629,40 +1661,40 @@ msgstr "Query execution time"
msgid "Save"
msgstr "Save"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Hide search criteria"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Show search criteria"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Add columns"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Choose column to display"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1670,59 +1702,59 @@ 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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Add an option for column "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Drag to reorder"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Click to sort"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Click to mark/unmark"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Generate password"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generate"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Change Password"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "More"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1732,27 +1764,27 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", latest stable version:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "up to date"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Done"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prev"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1760,149 +1792,149 @@ msgid "Next"
msgstr "Next"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Today"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "January"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "February"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "March"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "April"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "May"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "June"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "July"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "August"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "September"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "October"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "November"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Sunday"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Monday"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Tuesday"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Wednesday"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Thursday"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Friday"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1910,84 +1942,84 @@ msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Tu"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "We"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Th"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Hour"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Second"
@@ -2245,11 +2277,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2389,7 +2421,7 @@ msgstr "shared"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tables"
@@ -2468,7 +2500,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2517,7 +2549,7 @@ msgid "Documentation"
msgstr "Documentation"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL query"
@@ -2555,7 +2587,7 @@ msgid "Create PHP Code"
msgstr "Create PHP Code"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Refresh"
@@ -2576,7 +2608,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profiling"
@@ -2681,7 +2713,7 @@ msgstr "Click to toggle"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5293,12 +5325,12 @@ msgstr ", @TABLE@ will become the table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5497,7 +5529,7 @@ msgstr "Sort by key"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5561,7 +5593,7 @@ msgid "The row has been deleted"
msgstr "The row has been deleted"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Kill"
@@ -5577,7 +5609,7 @@ msgstr "Showing rows"
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
@@ -5650,7 +5682,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6047,11 +6079,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6143,28 +6175,28 @@ msgid "Display MIME types"
msgstr "Display MIME types"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Generation Time"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Server version"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Version"
@@ -6378,51 +6410,51 @@ msgid "Generated by"
msgstr "Generated by"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"The following structures have either been created or altered. Here you can:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "View a structure's contents by clicking on its name"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Change any of its settings by clicking the corresponding \"Options\" link"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Edit structure by following the \"Structure\" link"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Go to database"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Missing data for %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Go to table"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Structure only"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Go to view"
@@ -6877,14 +6909,14 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Value"
@@ -7090,7 +7122,7 @@ msgid "Returns"
msgstr "Returns"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Time"
@@ -7522,12 +7554,12 @@ msgid "Synchronize"
msgstr "Synchronise"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binary log"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variables"
@@ -7580,11 +7612,11 @@ msgstr "Clear"
msgid "Columns"
msgstr "Columns"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -7996,7 +8028,7 @@ msgstr "Protocol version"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "User"
@@ -8439,17 +8471,17 @@ msgstr "File doesn't exist"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Files"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -8836,13 +8868,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -8965,7 +8997,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Show master status"
@@ -9113,131 +9145,131 @@ msgstr ""
"This server is not configured as slave in a replication process. Would you "
"like to configure it?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Handler"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Threads"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Temporary data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Joins"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sorting"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "All status variables"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:648
+#: server_status.php:690
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor"
msgstr "Apply a divisor"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Refresh rate: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Containing the word:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Show only alert values"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filter by category..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Show only alert values"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Related links:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Query analyser"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introduction"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9252,44 +9284,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Questions since startup: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per hour"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minute"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per second"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Statements"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Network traffic since startup: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9297,16 +9329,16 @@ msgstr ""
"This MySQL server works as master and slave in replication"
"b> process."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"This MySQL server works as master in replication process."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr "This MySQL server works as slave in replication process."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9314,11 +9346,11 @@ msgstr ""
"For further information about replication status on the server, please visit "
"the replication section."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Replication status"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9326,35 +9358,35 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Received"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Sent"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Aborted"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Command"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9362,11 +9394,11 @@ msgstr ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9376,17 +9408,17 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9398,11 +9430,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9410,7 +9442,7 @@ msgstr ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9418,7 +9450,7 @@ msgstr ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9426,23 +9458,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "The number of INSERT DELAYED rows written."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "The number of executed FLUSH statements."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "The number of internal COMMIT statements."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9452,7 +9484,7 @@ msgstr ""
"table with a given name. This is called discovery. Handler_discover "
"indicates the number of time tables have been discovered."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9462,7 +9494,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9470,7 +9502,7 @@ 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:1153
+#: server_status.php:1195
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 "
@@ -9480,7 +9512,7 @@ msgstr ""
"incremented if you are querying an index column with a range constraint or "
"if you are doing an index scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9488,7 +9520,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -9500,7 +9532,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9512,267 +9544,267 @@ msgstr ""
"tables are not properly indexed or that your queries are not written to take "
"advantage of the indexes you have."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:1164
-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:1165
-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:1166
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
-#: server_status.php:1167
-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:1168
-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:1169
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
-
-#: server_status.php:1170
-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:1171
-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:1172
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "The number writes done to the InnoDB buffer pool."
-
-#: server_status.php:1173
-msgid "The number of fsync() operations so far."
-msgstr "The number of fsync() operations so far."
-
-#: server_status.php:1174
-msgid "The current number of pending fsync() operations."
-msgstr "The current number of pending fsync() operations."
-
-#: server_status.php:1175
-msgid "The current number of pending reads."
-msgstr "The current number of pending reads."
-
-#: server_status.php:1176
-msgid "The current number of pending writes."
-msgstr "The current number of pending writes."
-
-#: server_status.php:1177
-msgid "The amount of data read so far, in bytes."
-msgstr "The amount of data read so far, in bytes."
-
-#: server_status.php:1178
-msgid "The total number of data reads."
-msgstr "The total number of data reads."
-
-#: server_status.php:1179
-msgid "The total number of data writes."
-msgstr "The total number of data writes."
-
-#: server_status.php:1180
-msgid "The amount of data written so far, in bytes."
-msgstr "The amount of data written so far, in bytes."
-
-#: server_status.php:1181
-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:1182
-msgid "The number of doublewrite operations that have been performed."
-msgstr "The number of doublewrite operations that have been performed."
-
-#: server_status.php:1183
-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:1184
-msgid "The number of log write requests."
-msgstr "The number of log write requests."
-
-#: server_status.php:1185
-msgid "The number of physical writes to the log file."
-msgstr "The number of physical writes to the log file."
-
-#: server_status.php:1186
-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:1187
-msgid "The number of pending log file fsyncs."
-msgstr "The number of pending log file fsyncs."
-
-#: server_status.php:1188
-msgid "Pending log file writes."
-msgstr "Pending log file writes."
-
-#: server_status.php:1189
-msgid "The number of bytes written to the log file."
-msgstr "The number of bytes written to the log file."
-
-#: server_status.php:1190
-msgid "The number of pages created."
-msgstr "The number of pages created."
-
-#: server_status.php:1191
-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:1192
-msgid "The number of pages read."
-msgstr "The number of pages read."
-
-#: server_status.php:1193
-msgid "The number of pages written."
-msgstr "The number of pages written."
-
-#: server_status.php:1194
-msgid "The number of row locks currently being waited for."
-msgstr "The number of row locks currently being waited for."
-
-#: server_status.php:1195
-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:1196
-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:1197
-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:1198
-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:1199
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "The number of rows deleted from InnoDB tables."
-
-#: server_status.php:1200
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "The number of rows inserted in InnoDB tables."
-
-#: server_status.php:1201
-msgid "The number of rows read from InnoDB tables."
-msgstr "The number of rows read from InnoDB tables."
-
-#: server_status.php:1202
-msgid "The number of rows updated in InnoDB tables."
-msgstr "The number of rows updated in InnoDB tables."
-
-#: server_status.php:1203
-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:1204
-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:1205
-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:1206
-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."
+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:1207
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:1208
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
+
+#: server_status.php:1209
+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:1210
+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:1211
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:1212
+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:1213
+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:1214
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: server_status.php:1215
+msgid "The number of fsync() operations so far."
+msgstr "The number of fsync() operations so far."
+
+#: server_status.php:1216
+msgid "The current number of pending fsync() operations."
+msgstr "The current number of pending fsync() operations."
+
+#: server_status.php:1217
+msgid "The current number of pending reads."
+msgstr "The current number of pending reads."
+
+#: server_status.php:1218
+msgid "The current number of pending writes."
+msgstr "The current number of pending writes."
+
+#: server_status.php:1219
+msgid "The amount of data read so far, in bytes."
+msgstr "The amount of data read so far, in bytes."
+
+#: server_status.php:1220
+msgid "The total number of data reads."
+msgstr "The total number of data reads."
+
+#: server_status.php:1221
+msgid "The total number of data writes."
+msgstr "The total number of data writes."
+
+#: server_status.php:1222
+msgid "The amount of data written so far, in bytes."
+msgstr "The amount of data written so far, in bytes."
+
+#: server_status.php:1223
+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:1224
+msgid "The number of doublewrite operations that have been performed."
+msgstr "The number of doublewrite operations that have been performed."
+
+#: server_status.php:1225
+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:1226
+msgid "The number of log write requests."
+msgstr "The number of log write requests."
+
+#: server_status.php:1227
+msgid "The number of physical writes to the log file."
+msgstr "The number of physical writes to the log file."
+
+#: server_status.php:1228
+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:1229
+msgid "The number of pending log file fsyncs."
+msgstr "The number of pending log file fsyncs."
+
+#: server_status.php:1230
+msgid "Pending log file writes."
+msgstr "Pending log file writes."
+
+#: server_status.php:1231
+msgid "The number of bytes written to the log file."
+msgstr "The number of bytes written to the log file."
+
+#: server_status.php:1232
+msgid "The number of pages created."
+msgstr "The number of pages created."
+
+#: server_status.php:1233
+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:1234
+msgid "The number of pages read."
+msgstr "The number of pages read."
+
+#: server_status.php:1235
+msgid "The number of pages written."
+msgstr "The number of pages written."
+
+#: server_status.php:1236
+msgid "The number of row locks currently being waited for."
+msgstr "The number of row locks currently being waited for."
+
+#: server_status.php:1237
+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:1238
+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:1239
+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:1240
+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:1241
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "The number of rows deleted from InnoDB tables."
+
+#: server_status.php:1242
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "The number of rows inserted in InnoDB tables."
+
+#: server_status.php:1243
+msgid "The number of rows read from InnoDB tables."
+msgstr "The number of rows read from InnoDB tables."
+
+#: server_status.php:1244
+msgid "The number of rows updated in InnoDB tables."
+msgstr "The number of rows updated in InnoDB tables."
+
+#: server_status.php:1245
+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:1246
+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:1247
+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:1248
+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:1249
+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."
@@ -9781,15 +9813,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9799,7 +9831,7 @@ msgstr ""
"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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -9807,11 +9839,11 @@ msgstr ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9819,19 +9851,19 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9841,19 +9873,19 @@ msgstr ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9865,7 +9897,7 @@ msgstr ""
"cache size. The query cache uses a least recently used (LRU) strategy to "
"decide which queries to remove from the cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9873,19 +9905,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9893,11 +9925,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9905,7 +9937,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9913,15 +9945,15 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9929,11 +9961,11 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9941,13 +9973,13 @@ msgstr ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -9957,23 +9989,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "The number of sorted rows."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -9985,7 +10017,7 @@ msgstr ""
"should first optimise your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -9995,11 +10027,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "The number of currently open connections."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10011,63 +10043,63 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Start Monitor"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Instructions/Setup"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Done rearranging/editing charts"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Add chart"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Rearrange/edit charts"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Refresh rate"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Chart columns:"
msgid "Chart columns"
msgstr "Chart columns:"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Error management:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Restore default value"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Monitor Instructions"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10083,7 +10115,7 @@ msgstr ""
" general_log produces a lot of data and increases server load by up "
"to 15%"
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10091,7 +10123,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: Ok, you are good to go! Once you click "
@@ -10124,7 +10156,7 @@ msgstr ""
"statistics from the logs helping you find what caused the\n"
" activity spike.
"
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10140,75 +10172,69 @@ msgstr ""
"not required any more.\n"
" "
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU Usage"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Remove chart"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Memory Usage"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Swap Usage"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Status variable(s)"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Select series:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Commonly monitored"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "or type variable name:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Display as differential value"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Apply a divisor"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Append unit to data values"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Add this series"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Clear series"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Series in Chart:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Log statistics"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Selected time range:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Remove variable data in INSERT statements for better grouping"
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10216,18 +10242,18 @@ msgstr ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Query analyser"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d second"
msgstr[1] "%d seconds"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10683,34 +10709,34 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters."
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Using bookmark \"%s\" as default browse query."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Inserted row id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Showing as PHP code"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Showing SQL query"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Validated SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Label"
@@ -11451,9 +11477,9 @@ msgid "Current amount of Questions: %s"
msgstr "Current connection"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Show SQL queries"
#: po/advisory_rules.php:16
@@ -11475,7 +11501,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Flush query cache"
#: po/advisory_rules.php:21
@@ -11663,12 +11689,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Space usage"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11725,8 +11745,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11835,9 +11855,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11855,13 +11875,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:113
#, php-format
@@ -11893,8 +11915,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "There are no routines to display."
#: po/advisory_rules.php:121
#, fuzzy
@@ -11914,7 +11938,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11937,7 +11961,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11946,7 +11970,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11959,8 +11983,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Where to show the table row links"
#: po/advisory_rules.php:136
#, fuzzy
@@ -11970,8 +11996,8 @@ msgstr "Where to show the table row links"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12003,10 +12029,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s table"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Where to show the table row links"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12033,8 +12058,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s table"
#: po/advisory_rules.php:152
msgid ""
@@ -12075,8 +12103,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12096,8 +12126,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:168
#, php-format
@@ -12105,7 +12137,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12125,7 +12157,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Create table"
#: po/advisory_rules.php:176
@@ -12146,10 +12178,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Show open tables"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format of imported file"
#: po/advisory_rules.php:181
msgid ""
@@ -12172,7 +12204,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format of imported file"
#: po/advisory_rules.php:186
@@ -12219,7 +12251,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Key cache"
#: po/advisory_rules.php:201
@@ -12237,8 +12269,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Tracking is not active."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12297,10 +12331,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time is set to %d second(s)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Connections"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Persistent connections"
#: po/advisory_rules.php:221
msgid ""
@@ -12323,9 +12357,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Compress connection"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Persistent connections"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12347,7 +12381,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Persistent connections"
#: po/advisory_rules.php:231
@@ -12361,8 +12395,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format of imported file"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12383,7 +12419,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format of imported file"
#: po/advisory_rules.php:243
@@ -12410,8 +12446,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool size"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12523,6 +12561,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Space usage"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Show open tables"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Connections"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Compress connection"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU Usage"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Memory Usage"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Swap Usage"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/es.po b/po/es.po
index 0bd24f1cca..8dcc641da3 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-10 16:45+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
+"Language: es\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Mostrar todo"
@@ -47,7 +47,7 @@ msgstr "Buscar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Nombre de la clave"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Descripción"
@@ -201,7 +201,7 @@ msgstr "Enlaces a"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Comentarios"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "No"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Editar o exportar esquema relacional"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -616,11 +616,11 @@ msgstr "El seguimiento no está activo."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
-"sdocumentation%s."
+"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
+"%sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -629,7 +629,7 @@ msgstr "Visualizar"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replicación"
@@ -672,7 +672,7 @@ msgstr "Marcar las tablas con residuo a depurar"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
@@ -734,10 +734,10 @@ msgstr "Tablas con seguimiento"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -757,7 +757,7 @@ msgstr "Actualizado"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Estado actual"
@@ -856,8 +856,8 @@ msgstr "El volcado ha sido guardado al archivo %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sla documentation%s para hallar modos de superar esta "
@@ -904,7 +904,7 @@ msgstr "El favorito ha sido borrado."
msgid "Showing bookmark"
msgstr "Mostrando el favorito"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "El favorito %s fue creado"
@@ -956,15 +956,15 @@ msgstr "Clic para seleccionar"
msgid "Click to unselect"
msgstr "Clic para deseleccionar"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Realmente desea "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
@@ -1041,12 +1041,12 @@ msgstr "Recargando Privilegios"
msgid "Removing Selected Users"
msgstr "Eliminando los usuarios seleccionados"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Cerrar"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1054,15 +1054,15 @@ msgstr "Cerrar"
msgid "Edit"
msgstr "Editar"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Gráfico de tráfico en vivo"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Gráfico de procesos/conexiones en vivo"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Gráfico de consultas en vivo"
@@ -1073,13 +1073,13 @@ msgstr "Datos estáticos"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Otro"
@@ -1109,7 +1109,7 @@ msgstr "Tráfico del servidor (en KiB)"
msgid "Connections since last refresh"
msgstr "Connexiones desde la última actualización"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesos"
@@ -1127,155 +1127,187 @@ msgstr "Preguntas desde la última actualización"
msgid "Questions (executed statements by the server)"
msgstr "Preguntas (sentencias ejecutadas por el servidor)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Estadísticas de Consulta"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "No se pudo leer el archivo de configuración"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Cache de consultas"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Cache de consultas"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Cache de consultas"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Uso de CPU del sistema"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Memoria de sistema"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Intercambio de sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Carga promedio"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Memoria total"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Memoria caché"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Memoria de búfers"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Memoria libre"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Memoria utilizada"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Intercambio total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Intercambio en caché"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Intercambio utilizado"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Intercambio libre"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Bytes enviados"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Bytes recibidos"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Conexiones"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Preguntas"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Tráfico"
# This is the text showed in the tab
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Configuración"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Eliminar gráfico"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Editar título y etiquetas"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Agregar gráfico a la grilla"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Por favor agregue al menos una variable a la serie"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Ninguna"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Reanudar monitorización"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Pausar monitorización"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "«general_log» y «slow_query_log» activos."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "«general_log» activo."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "«slow_query_log» activo."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "«slow_query_log» y «general_log» desactivados."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "«log_output» no está definido como TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "«log_output» está definido como TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1286,12 +1318,12 @@ msgstr ""
"más de %d segundos. Es recomendable configurar «long_query_time» entre 0 y 2 "
"segundos dependiendo del equipo."
-#: js/messages.php:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1300,30 +1332,30 @@ msgstr ""
"valores predeterminados al reiniciar el servidor:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Habilitar %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Deshabilitar %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Definir «long_query_time» a %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1331,41 +1363,41 @@ msgstr ""
"No posee permisos para cambiar estas variables. Por favor inicie sesión con "
"la cuenta root o contacte a su administrador de base de datos."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Cambiar configuraciones"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Configuraciones actuales"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Título del gráfico"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Diferencial"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Dividido por %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Del registro de consultas lentas"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Del registro general"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analizando y cargando registros. Esto puede demorar."
-#: js/messages.php:158
+#: js/messages.php:165
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 "
@@ -1376,7 +1408,7 @@ msgstr ""
"agrupar, por lo que los demás atributos de las consultas como el tiempo de "
"inicio podría diferir."
-#: js/messages.php:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1385,56 +1417,56 @@ 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:160
+#: js/messages.php:167
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:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Saltar a la tabla de registros"
-#: js/messages.php:163
+#: js/messages.php:170
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."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filtros"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtrar"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filtrar consultas por palabra/expresión regular:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "Agrupar consultas ignorando datos variables en sentencias WHERE"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Suma de filas agrupadas:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Total:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Cargando registros"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "Falló la actualización del monitorizador"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
@@ -1444,21 +1476,21 @@ 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:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "Cargar página nuevamente"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr "Filas afectadas:"
-#: js/messages.php:181
+#: js/messages.php:188
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:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
@@ -1466,183 +1498,183 @@ msgstr ""
"No se pudo crear la grilla de gráficos con la configuración importada. "
"Reiniciando a configuración predeterminada..."
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importar"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Modificar la consulta"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Advisor"
msgid "Advisor system"
msgstr "Consejero"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentación"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Detalles"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Autentificación"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Cargando"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Procesando Petición"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Error al Procesar la Petición"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Eliminando Columna"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Añadiendo Clave Primaria"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Renombrando Bases de Datos"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Recargar Base de Datos"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Copiando Base de Datos"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Cambiando el Juego de caracteres"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "La tabla debe tener al menos una columna"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Crear tabla"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Insertar tablas"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Esconder índices"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Mostrar índices"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Buscando"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Ocultar resultados de búsqueda"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Mostrar resultados de búsqueda"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Examinando"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Borrando"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Ocultar ventana de consultas SQL"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Mostrar ventana de consultas SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "No se seleccionaron filas"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Cambiar"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Tiempo de ejecución de la consulta"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1650,40 +1682,40 @@ msgstr "Tiempo de ejecución de la consulta"
msgid "Save"
msgstr "Guardar"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Ocultar criterio de búsqueda"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Mostrar criterio de búsqueda"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Agregar columnas"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Seleccione la clave referenciada"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Seleccione la clave foránea"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Por favor seleccione la clave primaria o una clave única"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Elegir la columna a mostrar"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1691,15 +1723,15 @@ msgstr ""
"No se guardaron los cambios en la disposición. Serán perdidos si no los "
"guardas. ¿Deseas continuar?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Añadir una opción para la columna"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr "Presion la tecla de escape para cancelar la edición"
-#: js/messages.php:272
+#: js/messages.php:279
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?"
@@ -1707,25 +1739,25 @@ msgstr ""
"Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta "
"página sin guardar los datos?"
-#: js/messages.php:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Arrastrar para reordenar"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Pulsar para ordenar"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Pulsar para marcar/desmarcar"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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."
@@ -1734,23 +1766,23 @@ 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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Generar contraseña"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generar"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Cambar contraseña"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Más"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1760,255 +1792,255 @@ msgstr ""
"la obtenga. La versión más reciente es %s, y existe desde el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", versión estable más reciente:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "actualizada"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Terminado"
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr "Siguiente"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Hoy"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Enero"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Febrero"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Marzo"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Abril"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mayo"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Junio"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Julio"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Agosto"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Septiembre"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Octubre"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Noviembre"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Lunes"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Miércoles"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Jueves"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Viernes"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Ju"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Vi"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Segundo"
@@ -2265,8 +2297,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
@@ -2413,7 +2445,7 @@ msgstr "compartido"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tablas"
@@ -2494,7 +2526,7 @@ msgstr ""
"configuración."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Servidor"
@@ -2543,7 +2575,7 @@ msgid "Documentation"
msgstr "Documentación"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "consulta SQL"
@@ -2581,7 +2613,7 @@ msgid "Create PHP Code"
msgstr "Crear código PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Actualizar"
@@ -2602,7 +2634,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En línea"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Perfilando"
@@ -2699,7 +2731,7 @@ msgstr "Pulse para conmutar"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5378,8 +5410,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
"cadenas para formatear el tiempo. Además sucederán las siguientes "
@@ -5584,7 +5616,7 @@ msgstr "Ordenar según la clave"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5650,7 +5682,7 @@ msgid "The row has been deleted"
msgstr "La fila se ha borrado"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Matar el proceso"
@@ -5666,7 +5698,7 @@ msgstr "Mostrando registros"
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tardó %01.4f seg"
@@ -5741,7 +5773,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva de búfers"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Estado del InnoDB"
@@ -6155,8 +6187,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
"inicial de PrimeBase XT%s."
@@ -6252,28 +6284,28 @@ msgid "Display MIME types"
msgstr "Tipos MIME disponibles"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Tiempo de generación"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versión del servidor"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versión de PHP"
@@ -6487,50 +6519,50 @@ msgid "Generated by"
msgstr "Generado por"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Puede ver los contenidos de una estructura pulsando en su nombre"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
"correspondiente"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Edite la estructura siguiendo el enlace \"Estructura\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Ir a la base de datos"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr "Editar configuración de %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Ir a la tabla"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr "Estructura de %s"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Ir a la vista"
@@ -6994,14 +7026,14 @@ msgid "Slave status"
msgstr "Estado del esclavo"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valor"
@@ -7203,7 +7235,7 @@ msgid "Returns"
msgstr "Retorna"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tiempo"
@@ -7637,12 +7669,12 @@ msgid "Synchronize"
msgstr "Sincronizar"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Registro binario"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variables"
@@ -7695,11 +7727,11 @@ msgstr "Limpiar"
msgid "Columns"
msgstr "Columnas"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Guardar esta consulta en favoritos"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Permitir que todo usuario pueda acceder a este favorito"
@@ -8122,7 +8154,7 @@ msgstr "Versión del protocolo"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Usuario"
@@ -8245,8 +8277,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
-"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
-"sPulsa aquí para averiguar por qué%s."
+"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
+"%sPulsa aquí para averiguar por qué%s."
#: main.php:314
msgid ""
@@ -8579,17 +8611,17 @@ msgstr "El archivo no existe"
msgid "Select binary log to view"
msgstr "Seleccionar el registro binario que desea examinar"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Archivos"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncar las consultas que ya se han mostrado"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Mostrar las consultas enteras"
@@ -8990,8 +9022,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
@@ -9127,7 +9159,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Mostrar el estado del maestro"
@@ -9279,12 +9311,12 @@ msgstr ""
"Este servidor no está configurado como esclavo en un proceso de replicación. "
"¿Desea configurarlo?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "El proceso %s fue destruido exitosamente."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9292,115 +9324,115 @@ msgstr ""
"phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido "
"cerrado."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Gestor"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Cache de consultas"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Procesos"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Datos temporales"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Caché de claves"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Vínculos (Joins)"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Coordinador de transacción"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Vaciar el cache de todas las tablas"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Mostrar las tablas que están abiertas"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Mostrar los hosts esclavos"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Mostrar el estado del esclavo"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Vaciar el cache de consultas"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Información acerca del tiempo de ejecución del proceso principal"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Todas las variables de estado"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Monitorizar"
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr "Consejero"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Velocidad de actualización:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Que contengan la palabra:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Mostrar sólo valores de alerta"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtrar por categoría..."
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr "Mostrar valores sin formato"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Enlaces relacionados:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Analizador de consultas"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introducción"
-#: server_status.php:764
+#: server_status.php:806
#, fuzzy
#| msgid ""
#| "The Advisor system can provide recommendations on server variables by "
@@ -9439,44 +9471,44 @@ msgstr ""
"una mejora conmensurable."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Preguntas desde el inicio: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "por hora"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "por segundo"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Sentencias"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Tráfico de red desde el inicio: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9484,19 +9516,19 @@ msgstr ""
"Este servidor MySQL trabaja como maestro y esclavo en un "
"proceso de replicación."
-#: server_status.php:911
+#: server_status.php:953
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:913
+#: server_status.php:955
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:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9504,11 +9536,11 @@ msgstr ""
"Para más información sobre el estado de replicación en el servidor, por "
"favor visita la sección sobre replicación."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Estado de replicación"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9517,35 +9549,35 @@ msgstr ""
"pueden excederse. Por tanto, las estadísticas reportadas por el servidor "
"MySQL pueden ser incorrectas."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Recibido"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Número máx. de conexiones concurrentes"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Intentos fallidos"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "Identificación"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Comando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9553,11 +9585,11 @@ msgstr ""
"La cantidad de conexiones que fueron abandonadas porque el cliente murió sin "
"cerrar la conexión apropiadamente."
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9567,19 +9599,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:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9592,11 +9624,11 @@ msgstr ""
"tmp_table_size para hacer que las tablas temporales se basen en memoria en "
"lugar de basarse en disco."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "El número de archivos temporales que fueron creados por mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9604,7 +9636,7 @@ msgstr ""
"El número de tablas temporales en memoria creadas automáticamente por el "
"servidor mientras se ejecutaban las sentencias."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9612,7 +9644,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:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9620,23 +9652,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "El número de filas INSERT DELAYED escritas."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "El número de sentencias FLUSH ejecutadas."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "El número de sentencias COMMIT internas."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9647,7 +9679,7 @@ msgstr ""
"Handler_discover indica el número ocasiones que las tablas han sido "
"descubiertas."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9658,7 +9690,7 @@ msgstr ""
"de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, "
"asumiendo que col1 está indizado."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9667,7 +9699,7 @@ msgstr ""
"este valor es alto, es una buena indicación de que sus consultas y tablas "
"están indexadas apropiadamente."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9677,7 +9709,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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9686,7 +9718,7 @@ msgstr ""
"clave. Este método de lectura se usa principalmente para optimizar a ORDER "
"BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9699,7 +9731,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:1156
+#: server_status.php:1198
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 "
@@ -9712,37 +9744,37 @@ msgstr ""
"o que sus consultas no están escritas para tomar ventaja de los índices que "
"tiene."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "El número de sentencias ROLLBACK internas."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "El número de páginas actualmente sucias."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "El número de páginas libres."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9752,7 +9784,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:1165
+#: server_status.php:1207
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 "
@@ -9764,11 +9796,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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Tamaño total de la reserva de búfers, en páginas."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9777,7 +9809,7 @@ msgstr ""
"una consulta va a escanear una gran porción de una tabla pero en orden "
"aleatorio."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9785,11 +9817,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:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9797,7 +9829,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:1171
+#: server_status.php:1213
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 "
@@ -9812,55 +9844,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:1172
+#: server_status.php:1214
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:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "El número de operaciones fsync() hechas hasta el momento."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "El número actual de operaciones fsync() pendientes."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "El número actual de lecturas pendientes."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "El número actual de escrituras pendientess."
-#: server_status.php:1177
+#: server_status.php:1219
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:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "El número total de lectura de datos."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "El número total de escritura de datos."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "La cantidad de datos escritas hasta el momento, en bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9868,35 +9900,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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "El número de solicitudes de escritura al registro."
-#: server_status.php:1185
+#: server_status.php:1227
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:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "El número de fsyncs pendientes al archivo de registro."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Escrituras pendientes al archivo de registro."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "El número de bytes escritos al archivo de registro."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "El número de páginas creadas."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9905,52 +9937,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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "El número de páginas leídas."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "El número de páginas escritas."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "El número de filas eliminadas de tablas InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "El número de filas insertadas en tablas InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "El número de filas leídas de las tablas InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "El número de filas actualizadas en tablas InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9959,7 +9991,7 @@ msgstr ""
"aún no han sido volcados al disco. Antes se conocía como "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9967,7 +9999,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:1205
+#: server_status.php:1247
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 "
@@ -9977,11 +10009,11 @@ msgstr ""
"de desbordamiento que indica el número máximo de bloques que algún momento "
"se llegaron a usar."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9992,15 +10024,15 @@ msgstr ""
"demasiado pequeño. La tasa de fallos en el caché puede calcularse como "
"Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10011,7 +10043,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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10019,11 +10051,11 @@ msgstr ""
"El máximo número de conexiones que han sido utilizadas simultáneamente desde "
"que inició el servidor."
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10031,21 +10063,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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "El número de archivos que están abiertos."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "El número de tablas que están abiertas."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -10055,19 +10087,19 @@ msgstr ""
"altas pueden indicar problemas de fragmentación que pueden ser solucionados "
"ejecutando la consulta FLUSH QUERY CACHE."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "La cantidad de memoria libre para el cache de consultas."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "El número de hits al cache."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "El número de consultas añadidos al cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10080,7 +10112,7 @@ msgstr ""
"la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben "
"ser removidas del cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10088,20 +10120,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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "El número de consultas registradas en el cache."
-#: server_status.php:1224
+#: server_status.php:1266
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:1225
+#: server_status.php:1267
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:1226
+#: server_status.php:1268
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."
@@ -10109,13 +10141,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10124,7 +10156,7 @@ msgstr ""
"de cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
"cuidadosamente.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10132,19 +10164,19 @@ msgstr ""
"El número de vínculos (joins) que usaron rangos en la primera tabla "
"(normalmente no es crítico aun cuando sea grande)."
-#: server_status.php:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10152,12 +10184,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:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10165,14 +10197,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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10182,23 +10214,23 @@ msgstr ""
"hacer. Si este valor es grande, debe considerar incrementar el valor de la "
"varible de sistema sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
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:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "El número de filas sorted."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10210,7 +10242,7 @@ msgstr ""
"primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o "
"usar replicación."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10220,11 +10252,11 @@ msgstr ""
"puede calcularse como Threads_created/Connections. Si este valor es rojo, "
"debe incrementar su thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "El número de conexiones abiertas actualmente."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10236,43 +10268,43 @@ msgstr ""
"(Normalmente esto no aporta una mejoría notable en el rendimiento si usted "
"tiene una buena implementación de procesos.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "El número de procesos que no están en reposo."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Iniciar monitorización"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Instrucciones/Configuración"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Se finalizó la reorganización/edición de gráficos"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Agregar gráfico"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Reorganizar/editar gráficos"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Velocidad de actualización"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "Columnas del gráfico"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr "Ordenación de los gráficos"
-#: server_status.php:1431
+#: server_status.php:1473
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."
@@ -10281,15 +10313,15 @@ msgstr ""
"navegador. Sería recomendable exportarla si tiene una configuración "
"complicada."
-#: server_status.php:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr "Restaurar valor predeterminado"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Instrucciones de monitorización"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10300,10 +10332,11 @@ 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%"
+"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:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10316,7 +10349,7 @@ msgstr ""
"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:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10338,7 +10371,7 @@ msgstr ""
"de consultas agrupadas donde podrá pulsar en cualquier sentencia SELECT para "
"analizarla."
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10353,75 +10386,69 @@ msgstr ""
"«general_log» y vaciar sus tablas una vez que ya no se necesite "
"monitorizar. "
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "Uso de CPU"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Eliminar gráfico"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Uso de memoria"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Uso del área de intercambio"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Variable(s) de estado"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Seleccionar serie:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Monitorizaciones comunes"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "o ingrese el nombre de variable:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Mostrar como un valor diferencial"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Aplicar una división"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Agregar unidad a los valores"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Agregar esta serie"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Vaciar serie"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Series en el gráfico:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Estadísticas de registros"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Rango de tiempo seleccionado:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE"
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación"
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10429,18 +10456,18 @@ msgstr ""
"
Elegir el registro del que deseagenerar estadísticas.
Los resultados "
"se agruparán por el texto de la consulta."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Analizador de consultas"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d segundo"
msgstr[1] "%d segundos"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10906,35 +10933,35 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Mostrar los valores foráneos"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
"Utilizando el favorito \"%s\" como consulta predeterminada para examinar."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "La Id de la fila insertada es: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Mostrando la consulta SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas con los índices de la tabla `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiqueta"
@@ -11678,9 +11705,9 @@ msgid "Current amount of Questions: %s"
msgstr "Conexión actual"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Mostrar las consultas SQL"
#: po/advisory_rules.php:16
@@ -11702,7 +11729,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Vaciar el cache de consultas"
#: po/advisory_rules.php:21
@@ -11890,12 +11917,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Espacio utilizado"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11952,8 +11973,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12062,9 +12083,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permite la creación de tablas temporales."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12082,13 +12103,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permite la creación de tablas temporales."
#: po/advisory_rules.php:113
#, php-format
@@ -12120,8 +12143,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "No hay rutinas para mostrar."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12141,7 +12166,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12164,7 +12189,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12173,7 +12198,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12186,8 +12211,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Donde mostrar los enlaces de filas de tabla"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12197,8 +12224,8 @@ msgstr "Donde mostrar los enlaces de filas de tabla"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12228,14 +12255,11 @@ msgstr ""
msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
-# singular: tabla
-# plural: tablas
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabla"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Donde mostrar los enlaces de filas de tabla"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12261,9 +12285,14 @@ msgid ""
"below 25%%"
msgstr ""
+# singular: tabla
+# plural: tablas
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabla"
#: po/advisory_rules.php:152
msgid ""
@@ -12304,8 +12333,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Organizar el tamaño del búfer de memoria"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12325,8 +12356,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Organizar el tamaño del búfer de memoria"
#: po/advisory_rules.php:168
#, php-format
@@ -12334,7 +12367,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12354,7 +12387,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Crear tabla"
#: po/advisory_rules.php:176
@@ -12375,10 +12408,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Mostrar las tablas que están abiertas"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formato del archivo importado"
#: po/advisory_rules.php:181
msgid ""
@@ -12401,7 +12434,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formato del archivo importado"
#: po/advisory_rules.php:186
@@ -12448,7 +12481,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Caché de claves"
#: po/advisory_rules.php:201
@@ -12466,8 +12499,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "El seguimiento no está activo."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12526,10 +12561,10 @@ msgid "slow_launch_time is set to %s"
msgstr "«long_query_time» está configurado a %d segundo(s)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Conexiones"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Conexiones persistentes"
#: po/advisory_rules.php:221
msgid ""
@@ -12552,9 +12587,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Conexión de compresión"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Conexiones persistentes"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12576,7 +12611,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Conexiones persistentes"
#: po/advisory_rules.php:231
@@ -12590,8 +12625,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formato del archivo importado"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12612,7 +12649,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formato del archivo importado"
#: po/advisory_rules.php:243
@@ -12639,8 +12676,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Tamaño de la reserva de búfers"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12752,6 +12791,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Espacio utilizado"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Mostrar las tablas que están abiertas"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Conexiones"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Conexión de compresión"
+
+#~ msgid "CPU Usage"
+#~ msgstr "Uso de CPU"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Uso de memoria"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Uso del área de intercambio"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Cuaderno XLS Excel 97-2003"
diff --git a/po/et.po b/po/et.po
index 4782554b8c..e8c2ce25da 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Näita kõiki"
@@ -46,7 +46,7 @@ msgstr "Otsi"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Võtme nimi"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Kirjeldus"
@@ -200,7 +200,7 @@ msgstr "Lingib "
msgid "Comments"
msgstr "Kommentaarid"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Kommentaarid"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ei"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Ei"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -363,7 +363,7 @@ msgstr "Seoseskeem"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -636,8 +636,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -647,7 +647,7 @@ msgstr "Vaade"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Tiraeerimine"
@@ -689,7 +689,7 @@ msgstr "Kontrolli ülekulusid"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspordi"
@@ -757,10 +757,10 @@ msgstr "Kontrolli tabelit"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -782,7 +782,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Staatus"
@@ -886,8 +886,8 @@ msgstr "Väljavõte salvestati faili %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
@@ -930,7 +930,7 @@ msgstr "Järjehodja kustutati."
msgid "Showing bookmark"
msgstr "Näitan järjehoidjat"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Järjehoidja %s loodud"
@@ -982,15 +982,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" käsud keelatud."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Kas te tõesti tahate "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!"
@@ -1079,12 +1079,12 @@ msgstr "Lae privileegid uuesti"
msgid "Removing Selected Users"
msgstr "Eemalda valitud kasutajad"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1092,17 +1092,17 @@ msgstr ""
msgid "Edit"
msgstr "Muuda"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Serveri valik"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL-päring"
@@ -1114,13 +1114,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Kokku"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1152,7 +1152,7 @@ msgstr "Serveri valik"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Protsessid"
@@ -1172,170 +1172,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Rea statistika"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Päringute vahemälu"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Päringute vahemälu"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Päringute vahemälu"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Kokku"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Puhverdusala"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Kokku"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Vabad lehed"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Saadud"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Ühendused"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Pärsia"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Liiklus"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Peamised seoste võimalused"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Nimeta andmebaas ümber"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Pole"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1343,386 +1375,386 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "Salvesta failina"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Lubatud"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Keelatud"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Peamised seoste võimalused"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Peamised seoste võimalused"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Raporti pealkiri"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Pole andmebaase"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Väljade arv"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Väljade arv"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Sorteritud ridade arv."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Kokku"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokaalne"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Lae uuesti"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Import"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Uuenda päringut"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentatsioon"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentatsioon"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Katkesta"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokaalne"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Protsessid"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Korras"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Nimeta andmebaas ümber"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Nimeta andmebaas ümber"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopeeri andmebaas"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Tähetabel"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabelil peab olema vähemalt üks väli."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Loo tabel"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Kasuta tabeleid"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Lisa uus väli"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Näita võrgustiku"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Otsi"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL-päring"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL-päring"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Vaata"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Kustutan %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL-päring"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL-päring"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Ridu pole valitud"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Muuda"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1730,110 +1762,110 @@ msgstr ""
msgid "Save"
msgstr "Salvesta"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-päring"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-päring"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoreeri"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Lisa %s väli(jad)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Vali eelistus võti (referenced key)"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Vali võõrvõti(Foreign Key)"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Palun vali primaarne või unkaalne võti"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Vali väli mida kuvada"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Genereeri parool"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genereeri"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Muuda parooli"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Esm"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1841,30 +1873,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Suhte loomine (relation)"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Pole andmebaase"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Andmed"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Eelmine"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1872,96 +1904,96 @@ msgid "Next"
msgstr "Järgmine"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kokku"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binaarne"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mär"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Veb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mär"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1969,78 +2001,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Det"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Püh"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Esm"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tei"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ree"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2048,100 +2080,100 @@ msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Lau"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Püh"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Esm"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tei"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Kol"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Nel"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ree"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lau"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "kasutusel"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2401,8 +2433,8 @@ msgstr "Tere tulemast %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
"kasutada %1$ssetup script%2$s et seadistada."
@@ -2544,7 +2576,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabelid"
@@ -2628,7 +2660,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2677,7 +2709,7 @@ msgid "Documentation"
msgstr "Dokumentatsioon"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-päring"
@@ -2715,7 +2747,7 @@ msgid "Create PHP Code"
msgstr "Loo PHP kood"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Uuenda"
@@ -2738,7 +2770,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mootor"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2845,7 +2877,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5455,8 +5487,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
@@ -5684,7 +5716,7 @@ msgstr "Sorteeri võtme järgi"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5756,7 +5788,7 @@ msgid "The row has been deleted"
msgstr "Rida kustutatud"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Tapa"
@@ -5772,7 +5804,7 @@ msgstr "Näita ridu"
msgid "total"
msgstr "kokku"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Päring kestis %01.4f sek"
@@ -5848,7 +5880,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puhverdusala"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB staatus"
@@ -6208,8 +6240,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6329,28 +6361,28 @@ msgid "Display MIME types"
msgstr "Olemasolevad MIME-tüübid"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Masin"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Tegemisaeg"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Serveri versioon"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP versioon"
@@ -6551,50 +6583,50 @@ msgid "Generated by"
msgstr "Genereerija "
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Pole andmebaase"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Pole andmebaase"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Ainult struktuur"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7049,14 +7081,14 @@ msgid "Slave status"
msgstr "Näita alluvate(slave) staatust"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Muutuja"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Väärtus"
@@ -7272,7 +7304,7 @@ msgid "Returns"
msgstr "Tabeli seaded"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Aeg"
@@ -7758,12 +7790,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binaarne logi"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Muutujad"
@@ -7821,11 +7853,11 @@ msgstr "Kalender"
msgid "Columns"
msgstr "Väljade nimed"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Lisa see SQL päring järjehoidjasse"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
@@ -8294,7 +8326,7 @@ msgstr "Protokolli versioon"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Kasutaja"
@@ -8756,18 +8788,18 @@ msgstr "\"%s\" tabel ei eksisteeri!"
msgid "Select binary log to view"
msgstr "Valige binaarne logi vaatamiseks"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Väljade arv"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Lühenda näidatavad päringud"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Näita täispikkasid päringuid"
@@ -9160,8 +9192,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges "
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "
@@ -9294,7 +9326,7 @@ msgstr "Privileegid taaslaeti edukalt."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Näita alluvate(slave) staatust"
@@ -9435,12 +9467,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Protsess %s katkestati edukalt."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9448,125 +9480,125 @@ msgstr ""
"phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba "
"suletud."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Töötleja"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Päringute vahemälu"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Lõimud"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Ajutised andmed "
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Ajastatud lisamised"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Võtme vahemälu"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Liited"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Järjestamine"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Ülekande kordinaator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Tühjenda (sulge) kõik tabelid"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Näita avatud tabeleid"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Näita alluvaid(slave)"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Näita alluvate(slave) staatust"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Tühjenda päringute vahemälu"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Jooksev informatsioon"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Uuenda"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ärge muutke parooli"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Näita avatud tabeleid"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Näita avatud tabeleid"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Suhted"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Päringu tüüp"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funktsioonid"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9581,70 +9613,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "tunni kohta"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "minutis"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "sekundis"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Parameerid"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "See MySQL server on käinud %s. Käivitusaeg %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Tiraeerimine"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9652,47 +9684,47 @@ msgstr ""
"Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see "
"statistika mida näitab MySQL server ei pruugi olla täpne."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Saadud"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Saadetud"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "maks. parallel ühendusi"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Ebaõnnestunud üritused"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Katkestatud"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Käsk"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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 "Mitu fsyncs kirjutamist tehtud logi faili."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9702,16 +9734,16 @@ msgstr ""
"binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada "
"ülekande Käske (päringuid)."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9722,11 +9754,11 @@ msgstr ""
"käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada "
"tmp_table_size väärtust et olla mälul baseeruv mitte kettal."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Mitu ajutist faili mysqld on loonud."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9734,7 +9766,7 @@ msgstr ""
"Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, "
"päringuid käivitades."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9742,7 +9774,7 @@ msgstr ""
"Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti "
"korduv võti)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9750,23 +9782,23 @@ msgstr ""
"Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel "
"mis kasutab INSERT DELAYED saab oma lõimu."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED ridasid loodud."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "FLUSH käskude arv."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Sisemiste COMMIT käskude arv."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Mitu korda rida kustutati tabelist."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9776,7 +9808,7 @@ msgstr ""
"mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus"
"(discovery). Handler_discover annab mitu korda on tabel leitud."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9786,7 +9818,7 @@ msgstr ""
"server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, "
"arvates et col1 indekseeritud."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9794,7 +9826,7 @@ msgstr ""
"Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et "
"sinu päringud ja tabelid on korralikult indekseeritud."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9803,7 +9835,7 @@ msgstr ""
"Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui "
"sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9811,7 +9843,7 @@ msgstr ""
"Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on "
"peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9823,7 +9855,7 @@ msgstr ""
"mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei "
"kasuta võtmeid korralikult."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9835,35 +9867,35 @@ msgstr ""
"korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta "
"eeliseid sinu loodud indeksitest."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Mitu korda käivitati sisemine ROLLBACK lausung."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Mitu korda uuendati tabeli rida."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Mitu korda lisati uus rida tabelisse."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Mitu lehekülge on mustad."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Mitu puhvri lehekülge on määratud puhastamisele."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Mitu puu lehekülge."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9872,7 +9904,7 @@ msgstr ""
"Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või "
"kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9884,11 +9916,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Kogu puhvris suurus, lehtedes."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9896,7 +9928,7 @@ msgstr ""
"Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring "
"on skaneerida suur osa tabelist kuid juhuslikus järjekorras."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9904,11 +9936,11 @@ msgstr ""
"Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb "
"järjestikulist kogu tabeli skaneerimist."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Mitu loogilist lugemist InnoDB on teinud."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9916,7 +9948,7 @@ msgstr ""
"Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja "
"tegi üksiku lehe lugemise."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9929,55 +9961,55 @@ msgstr ""
"enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri "
"suurus on seatud korralikult, se number peaks olema väike."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Mitu korda kirjutas InnoDB puhvrisse."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Mitu fsync() operatsiooni siiani."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Mitu hetkel ootel fsync() operatsiooni."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Mitu ootel lugemist."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Mitu ootel kirjutamist."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Suurus kui palju andmeid on loetud siiani, baitides."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Mitu korda loetud."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Mitu korda andmeid kirjutati."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Suurus palju andmeid on kirjutatud, baitides."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel "
"põhjusel."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud "
"just sellel põhjusel."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9985,35 +10017,35 @@ msgstr ""
"Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi "
"ootama enne ühtlustamist et jätkata."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Mitu logi kirjutamise soovi."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Mitu füüsilist kirjutamist logi faili."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Mitu fsyncs kirjutamist tehtud logi faili."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Mitu ootel logi faili fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "ootel logifaili kirjutamisi."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Mitu baiti on kirjutatud logi faili."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Lehti loodud."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10021,51 +10053,51 @@ msgstr ""
"Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on "
"loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Lehti loetud."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Lehti kirjutatud."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Mitu rea lukustamist on hetkel ootel."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Keskimne aeg pärides rea lukustust, millisekundites."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Mitu korda pidi rea lukustus ootama."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Mitu rida kustutatud InnoDB tabelitest."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Mitu rida lisati InnoDB tabelitesse."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Mitu rida loetud InnoDB tabelitest."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Mitu rida uuendati InnoDB tabelites."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10073,7 +10105,7 @@ msgstr ""
"Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale "
"kirjutatud. Tuntud nagu Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10081,7 +10113,7 @@ msgstr ""
"Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda "
"väärtust et teada saada kui palju võtme vahemälust on kasutuses."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -10090,11 +10122,11 @@ msgstr ""
"Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse "
"plokkide arvu mis on kunagi olnud kasutuses."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "Mitu päringut et lugeda võtme plokk vahemälust."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -10104,15 +10136,15 @@ msgstr ""
"siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek "
"on võimalik arvutada nii Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Mitu päringut et kirjutada võtme plokk vahemällu."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10122,17 +10154,17 @@ msgstr ""
"Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. "
"Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Mitu rida on ootel INSERT DELAYED päringutes."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10140,38 +10172,38 @@ msgstr ""
"Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus "
"kindlasti liiga väike."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Mitu faili on avatud."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Mitu tabelit on hetkel avatud."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Vaba mälu päringute vahemälus."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Leitud Puhvrist."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Mitu päringut on lisatud vahemällu."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10183,7 +10215,7 @@ msgstr ""
"vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised "
"päringud eemaldada puhvrist."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10191,21 +10223,21 @@ msgstr ""
"Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt "
"query_cache_type sätetest mitte puhverdatud)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Mitu päringut on registreeritud vahemälus."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Plokkide koguarv päringute vahemälus."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
"See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel "
"kasutuses)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10213,11 +10245,11 @@ msgstr ""
"Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid "
"ettevaatlikult kontrollima oma tabelites indekseid."
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10226,7 +10258,7 @@ msgstr ""
"kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma "
"tabelite indekseid.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10234,17 +10266,17 @@ msgstr ""
"Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline "
"kui see on väga suur.)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) "
"poolt."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10252,23 +10284,23 @@ msgstr ""
"Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL "
"alam-lõim(replication slave) proovis ülekandeid."
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10277,23 +10309,23 @@ msgstr ""
"Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see "
"väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Sorteritud ridade arv."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Mitu korda tabeli lukustus jõustus koheselt."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10304,7 +10336,7 @@ msgstr ""
"suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või "
"poolitama oma tabelid või kasutama tiraþeerimist(replication)."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10314,11 +10346,11 @@ msgstr ""
"nii Threads_created/Connections. Kui see on punane paksid suurendama "
"thread_cache_size suurust."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Hetkel avatud ühendusi."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10329,64 +10361,64 @@ msgstr ""
"siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat "
"kiiruse tõusu kui Lõimude teostus on korralik.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Lõimude arv mis mis hetkel ei maga."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Lau"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Lisa uus väli"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Uuenda"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Lisa/Kustuta välja veerud"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10395,7 +10427,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10403,7 +10435,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10415,7 +10447,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Päringu tüüp"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10525,7 +10547,7 @@ msgid_plural "%d seconds"
msgstr[0] "sekundis"
msgstr[1] "sekundis"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10943,36 +10965,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Vaata väliseid väärtuseid"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Näitan PHP koodina"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Näitan SQL päringut"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Kontrolli SQL-i"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleemid tabeli `%s` indeksitega"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Nimetus"
@@ -11770,8 +11792,8 @@ msgid "Current amount of Questions: %s"
msgstr "maks. parallel ühendusi"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Näita täispikkasid päringuid"
#: po/advisory_rules.php:16
@@ -11793,7 +11815,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Tühjenda päringute vahemälu"
#: po/advisory_rules.php:21
@@ -11974,12 +11996,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Ruumivõtt"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12036,8 +12052,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12145,9 +12161,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Lubab luua ajutisi tabeleid."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12165,13 +12181,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Lubab luua ajutisi tabeleid."
#: po/advisory_rules.php:113
#, php-format
@@ -12203,8 +12221,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Kontrolli tabelit"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12223,7 +12242,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12246,7 +12265,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12255,7 +12274,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12268,7 +12287,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12277,8 +12296,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12309,10 +12328,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tabel(it)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12339,8 +12356,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tabel(it)"
#: po/advisory_rules.php:152
msgid ""
@@ -12381,8 +12400,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sordi puhvri suurus"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12402,8 +12423,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sordi puhvri suurus"
#: po/advisory_rules.php:168
#, php-format
@@ -12411,7 +12434,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12431,7 +12454,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Loo tabel"
#: po/advisory_rules.php:176
@@ -12452,10 +12475,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Näita avatud tabeleid"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Imporditud faili formaat"
#: po/advisory_rules.php:181
msgid ""
@@ -12478,7 +12501,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Imporditud faili formaat"
#: po/advisory_rules.php:186
@@ -12525,7 +12548,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Võtme vahemälu"
#: po/advisory_rules.php:201
@@ -12543,8 +12566,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Võtme vahemälu"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12600,10 +12625,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Ühendused"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "maks. parallel ühendusi"
#: po/advisory_rules.php:221
msgid ""
@@ -12627,7 +12652,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "maks. parallel ühendusi"
#: po/advisory_rules.php:226
@@ -12650,7 +12675,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "maks. parallel ühendusi"
#: po/advisory_rules.php:231
@@ -12664,8 +12689,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Imporditud faili formaat"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12686,7 +12713,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Imporditud faili formaat"
#: po/advisory_rules.php:243
@@ -12713,8 +12740,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Puhverdusala suurus"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12826,6 +12855,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Ruumivõtt"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Näita avatud tabeleid"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Ühendused"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "maks. parallel ühendusi"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Kasutus"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Kasutus"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/eu.po b/po/eu.po
index ce0f31d073..d2f016fc19 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
+"Language: eu\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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Dena erakutsi"
@@ -47,7 +47,7 @@ msgstr "Bilatu"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Klabearen hitza"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Deskribapena"
@@ -201,7 +201,7 @@ msgstr "Estekak honi:"
msgid "Comments"
msgstr "Iruzkinak"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Iruzkinak"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ez"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Ez"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -367,7 +367,7 @@ msgstr "Erlazio-eskema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -640,8 +640,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -651,7 +651,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Erlazioak"
@@ -694,7 +694,7 @@ msgstr "Arazteko hondakinak egiaztatu"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Esportatu"
@@ -760,10 +760,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -784,7 +784,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Egoera"
@@ -887,8 +887,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -924,7 +924,7 @@ msgstr "Gordetako kontsulta ezabatu da."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -973,15 +973,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Benetan nahi al duzu "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1066,12 +1066,12 @@ msgstr "Pribilegioak berkargatzen"
msgid "Removing Selected Users"
msgstr "Hautatutako erabiltzaileak baztertu"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1079,17 +1079,17 @@ msgstr ""
msgid "Edit"
msgstr "Editatu"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Zerbitzariaren hautaketa"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL kontsulta"
@@ -1101,13 +1101,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Gutira"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1139,7 +1139,7 @@ msgstr "Zerbitzariaren hautaketa"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Prozesuak"
@@ -1159,165 +1159,192 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Errenkadaren estatistikak"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Kontsulta mota"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Kontsulta mota"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Kontsulta mota"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Gutira"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Gutira"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Jasota"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Konexioak"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Eragiketak"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafikoa"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
msgid "Remove chart"
msgstr "Taula berrizendatu izen honetara: "
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Batez"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1325,381 +1352,381 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Ezgaituta"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Fitxategiak inportatu"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Datu-baserik ez"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Errenkada kopurua orriko"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Gutira"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokal"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
msgid "Reload page"
msgstr "Taula berrizendatu izen honetara: "
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Esportatu"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Kontsulta eguneratu"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentazioa"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentazioa"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokal"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Prozesuak"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Zuzena"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
msgid "Renaming Databases"
msgstr "Taula berrizendatu izen honetara: "
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
msgid "Reload Database"
msgstr "Taula berrizendatu izen honetara: "
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "Datu-baserik ez"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Karaktere-jokoa"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Orri berri bat sortu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Taulak erabili"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indizeak"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Sareta erakutsi"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Bilatu"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL kontsulta"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL kontsulta"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Arakatu"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s ezabatzen"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL kontsulta"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL kontsulta"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Aldatu"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1707,111 +1734,111 @@ msgstr ""
msgid "Save"
msgstr "Gorde"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ezikusi"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Gehitu %s zutabe"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Aukeratu erakutsi beharreko eremua"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Egilea:"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Astel"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1819,30 +1846,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Datu-baserik ez"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Batez"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Aurrekoa"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1850,96 +1877,96 @@ msgid "Next"
msgstr "Hurrengoa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gutira"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarioa "
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Api"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Eka"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Uzt"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Abu"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Urr"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1947,78 +1974,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Abe"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Iga"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Astel"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Astea"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Osti"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2026,100 +2053,100 @@ msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Lar"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Iga"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Astel"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Astea"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Astez"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Oste"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Osti"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lar"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lanean"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2371,8 +2398,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2510,7 +2537,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Taulak"
@@ -2589,7 +2616,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Zerbitzaria"
@@ -2638,7 +2665,7 @@ msgid "Documentation"
msgstr "Dokumentazioa"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL kontsulta"
@@ -2676,7 +2703,7 @@ msgid "Create PHP Code"
msgstr "PHP kodea sortu"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2697,7 +2724,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2802,7 +2829,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5374,8 +5401,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5586,7 +5613,7 @@ msgstr "Gakoaren arabera ordenatu"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5658,7 +5685,7 @@ msgid "The row has been deleted"
msgstr "Errenkada ezabatua izan da"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Hil"
@@ -5674,7 +5701,7 @@ msgstr "Errenkadak erakusten"
msgid "total"
msgstr "guztira"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
@@ -5748,7 +5775,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Egoera"
@@ -6093,8 +6120,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6208,28 +6235,28 @@ msgid "Display MIME types"
msgstr "MIME-mota erabilgarriak"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Zerbitzaria"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Sortzeko denbora"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Zerbitzariaren bertsioa"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Bertsioa"
@@ -6428,49 +6455,49 @@ msgid "Generated by"
msgstr "Egilea:"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Datu-baserik ez"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Egitura soilik"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6924,14 +6951,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Aldagaia"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "balioa"
@@ -7148,7 +7175,7 @@ msgid "Returns"
msgstr "Taularen hobespenak"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Denbora"
@@ -7623,13 +7650,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Binarioa "
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Aldagaiak"
@@ -7686,11 +7713,11 @@ msgstr ""
msgid "Columns"
msgstr "Zutabe izenak"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Kontsulta hau gogokoetan gorde"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
@@ -8131,7 +8158,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Erabiltzailea"
@@ -8589,18 +8616,18 @@ msgstr "\"%s\" taula ez da existitzen!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Eremuak"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Erakutsitako kontultak moztu"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Kontsulta osoak erakutsi"
@@ -9006,8 +9033,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "
@@ -9139,7 +9166,7 @@ msgstr "Pribilegioak arrakastaz berkargatu dira."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9278,12 +9305,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s haria arrakastaz ezabatu da."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9291,125 +9318,125 @@ msgstr ""
"phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia "
"izatea."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Kontsulta mota"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Use delayed inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Taulak erakutsi"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
#, fuzzy
msgid "Runtime Information"
msgstr "Saioa hasteko informazioa"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "Egilea:"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Pasahitza ez aldatu"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Taulak erakutsi"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Taulak erakutsi"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Erlazioak"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Kontsulta mota"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funtzioak"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9424,131 +9451,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "orduko"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "minutuko"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "segunduko"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Sententziak"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Jasota"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Bidalita"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Erratutako saiakerak"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Deuseztatua"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komandoa"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9556,78 +9583,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9635,7 +9662,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9643,42 +9670,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9686,33 +9713,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9721,227 +9748,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9949,99 +9976,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10049,18 +10076,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10068,64 +10095,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Lar"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Gehitu %s zutabe"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Egilea:"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10134,7 +10161,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10142,7 +10169,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10154,7 +10181,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10163,98 +10190,87 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Erabilpena"
+msgid "Preset chart"
+msgstr "Taula berrizendatu izen honetara: "
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Erabilpena"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Taulak hautatu"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Erabiltzaile berria gehitu"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL kontsulta"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Errenkadaren estatistikak"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Taulak hautatu"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Kontsulta mota"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10262,7 +10278,7 @@ msgid_plural "%d seconds"
msgstr[0] "segunduko"
msgstr[1] "segunduko"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10677,36 +10693,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL balidatu"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiketa"
@@ -11496,8 +11512,8 @@ msgid "Current amount of Questions: %s"
msgstr "Konexioak"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Kontsulta osoak erakutsi"
#: po/advisory_rules.php:16
@@ -11518,7 +11534,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL kontsulta"
#: po/advisory_rules.php:21
@@ -11696,12 +11712,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Erabilitako lekua"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11757,8 +11767,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11863,9 +11873,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Aldi baterako taulak sortzea baimentzen du."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11883,13 +11893,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Aldi baterako taulak sortzea baimentzen du."
#: po/advisory_rules.php:113
#, php-format
@@ -11921,7 +11933,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11940,7 +11952,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11963,7 +11975,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11972,7 +11984,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11985,7 +11997,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11994,8 +12006,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12026,10 +12038,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s taula(k)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12056,8 +12066,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s taula(k)"
#: po/advisory_rules.php:152
msgid ""
@@ -12096,7 +12108,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12117,7 +12129,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12126,7 +12138,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12145,7 +12157,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Orri berri bat sortu"
#: po/advisory_rules.php:176
@@ -12164,9 +12176,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Taulak erakutsi"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Fitxategiaren karaktereen kodeketa:"
#: po/advisory_rules.php:181
msgid ""
@@ -12188,7 +12200,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Fitxategiaren karaktereen kodeketa:"
#: po/advisory_rules.php:186
@@ -12230,7 +12242,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Kontsulta mota"
#: po/advisory_rules.php:201
@@ -12248,8 +12260,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "Kontsulta mota"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12303,9 +12316,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Konexioak"
#: po/advisory_rules.php:221
@@ -12330,7 +12343,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Konexioak"
#: po/advisory_rules.php:226
@@ -12353,7 +12366,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Konexioak"
#: po/advisory_rules.php:231
@@ -12367,8 +12380,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Edukinen taula"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12389,7 +12404,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Edukinen taula"
#: po/advisory_rules.php:243
@@ -12414,7 +12429,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12521,6 +12536,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Erabilitako lekua"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Taulak erakutsi"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Konexioak"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Konexioak"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Erabilpena"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Erabilpena"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/fa.po b/po/fa.po
index 03c9237e36..fd3ecb7abe 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
+"Language: fa\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=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "نمايش همه"
@@ -44,7 +44,7 @@ msgstr "جستجو"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -85,7 +85,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "توضیحات"
@@ -198,7 +198,7 @@ msgstr "پيوند به"
msgid "Comments"
msgstr "توضيحات"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -209,12 +209,12 @@ msgstr "توضيحات"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "خير"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -230,7 +230,7 @@ msgstr "خير"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "ویرایش یا صدور نمای رابطه ای"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -616,8 +616,8 @@ msgstr "پیگردی فعال نمی باشد."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
"نمایید."
@@ -629,7 +629,7 @@ msgstr "نمایش"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -671,7 +671,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "صدور"
@@ -737,10 +737,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -760,7 +760,7 @@ msgstr "به روز شده"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr ""
@@ -861,8 +861,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -899,7 +899,7 @@ msgstr "سطر حذف گرديد ."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -946,15 +946,15 @@ msgstr "برای انتخاب کلیک کنبد"
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "دستور \"DROP DATABASE\" غيرفعال ميباشد."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "آيا مطمئن هستيد "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1035,12 +1035,12 @@ msgstr "ويرايش امتيازات"
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1048,17 +1048,17 @@ msgstr ""
msgid "Edit"
msgstr "ويرايش"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server version"
msgid "Live traffic chart"
msgstr "نسخه سرور"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "پرس و جوي SQL"
@@ -1070,13 +1070,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "جمع كل"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1108,7 +1108,7 @@ msgstr "نسخه سرور"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1126,164 +1126,194 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "آمار سطرها"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Query cache efficiency"
+msgstr "پیگردی فعال نمی باشد."
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache usage"
+msgstr "فضاي استفادهشده"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache used"
+msgstr "فضاي استفادهشده"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "مگا بايت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "كيلوبايت"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "جمع كل"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "جمع كل"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "فارسي"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "Deleting %s"
msgid "Settings"
msgstr "در حال پاک کردن %s"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "حذف پایگاه داده"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "خير"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1291,375 +1321,375 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "فعال"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "غيرفعال"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Change"
msgid "Change settings"
msgstr "تغيير"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
msgid "Current settings"
msgstr "پرس و جوي SQL"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
msgid "Chart Title"
msgstr "No tables"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "No databases"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "تعداد سطرها در هر صفحه"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "جمع كل"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "محلی"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
msgid "Reload page"
msgstr "بازناميدن جدول به"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "صدور"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "بههنگام سازي پرس و جو"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "مستندات"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "مستندات"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "لغو کردن"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "محلی"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "تاييد"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
msgid "Renaming Databases"
msgstr "بازناميدن جدول به"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
msgid "Reload Database"
msgstr "بازناميدن جدول به"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "No databases"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "ساخت يك صفحه جديد"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "بكارگيري جدولها"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "فهرستها"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "جستجو"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "پرس و جوي SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "پرس و جوي SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "مشاهده"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "در حال پاک کردن %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "پرس و جوي SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "پرس و جوي SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "تغيير"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1667,112 +1697,112 @@ msgstr ""
msgid "Save"
msgstr "ذخيره"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "افزودن ستون جديد"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "ستون را براي نمايش انتخاب نماييد"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "برای انتخاب کلیک کنبد"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "توليدشده توسط"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "دوشنبه"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1780,32 +1810,32 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "نسخه قبلی"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "No databases"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "خير"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "قبل"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1813,96 +1843,96 @@ msgid "Next"
msgstr "بعد"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "جمع كل"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "دودويي"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "آوريل"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "مي"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ژوئن"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "جولاي"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "آگوست"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "اكتبر"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1910,78 +1940,78 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "دسامبر"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "يكشنبه"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "دوشنبه"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "سهشنبه"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "چهارشنبه"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "پنجشنبه"
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "جمعه"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "شنبه"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1989,98 +2019,98 @@ msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "شنبه"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "يكشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "دوشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "سهشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "چهارشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "پنجشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "جمعه"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "هفته"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "ساعت"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "دقیقه"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "ثانیه"
@@ -2328,8 +2358,8 @@ msgstr "به %s خوشآمديد"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2464,7 +2494,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "جدولها"
@@ -2541,7 +2571,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "سرور"
@@ -2590,7 +2620,7 @@ msgid "Documentation"
msgstr "مستندات"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "پرس و جوي SQL"
@@ -2629,7 +2659,7 @@ msgid "Create PHP Code"
msgstr "ساخت كد PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2653,7 +2683,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "موتور"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2760,7 +2790,7 @@ msgstr "برای انتخاب کلیک کنبد"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5303,8 +5333,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5509,7 +5539,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5577,7 +5607,7 @@ msgid "The row has been deleted"
msgstr "سطر حذف گرديد ."
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Kill"
@@ -5593,7 +5623,7 @@ msgstr "Showing rows"
msgid "total"
msgstr "جمع كل"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5667,7 +5697,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -6010,8 +6040,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6120,28 +6150,28 @@ msgid "Display MIME types"
msgstr "نمايش خصوصيات"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "ميزبان"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "زمان توليد"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "نسخه سرور"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "نسخه PHP"
@@ -6338,49 +6368,49 @@ msgid "Generated by"
msgstr "توليدشده توسط"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "No databases"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "فقط ساختار"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6829,14 +6859,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "متغییر"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "مقدار"
@@ -7049,7 +7079,7 @@ msgid "Returns"
msgstr "آمار پايگاههاي داده"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr ""
@@ -7507,13 +7537,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "دودويي"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
#, fuzzy
msgid "Variables"
msgstr "متغییر"
@@ -7572,11 +7602,11 @@ msgstr "تقویم"
msgid "Columns"
msgstr "نام ستونها"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7690,9 +7720,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
-"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
-"\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
+"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
+"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:109
msgid ""
@@ -7727,9 +7757,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
-"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
-"\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
+"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
+"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:342
msgid "ENUM or SET data too long?"
@@ -7940,7 +7970,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "كاربر"
@@ -7995,8 +8025,8 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
-"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
-"، و شما بايد اين حفره امنيتي را ذرست كنيد."
+"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
+"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
#: main.php:251
msgid ""
@@ -8386,18 +8416,18 @@ msgstr "جدول \"%s\" وجود ندارد!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "ستونها"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8783,8 +8813,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8908,7 +8938,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9047,134 +9077,134 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "وروديهاي تمديدشده"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "نمايش جدولها"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
#, fuzzy
msgid "Runtime Information"
msgstr "اطلاعات ورود"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "توليدشده توسط"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "عدم تغيير اسم رمز"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "نمايش جدولها"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "نمايش جدولها"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
msgid "Related links:"
msgstr "عمليات"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "پرس و جو"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "تابع"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9189,128 +9219,128 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "در ساعت"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "در دقیقه"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "در ثانیه"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "شرج"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "شناسه"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "دستور"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9318,78 +9348,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9397,7 +9427,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9405,42 +9435,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9448,33 +9478,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9483,227 +9513,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9711,99 +9741,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9811,18 +9841,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9830,63 +9860,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "شنبه"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "افزودن ستون جديد"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "توليدشده توسط"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "اضافه يا حذف ستونها"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9895,7 +9925,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9903,7 +9933,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9915,7 +9945,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "پرس و جو"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] " ثانیه"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10434,36 +10454,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "معتبرسازي SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -11244,8 +11264,8 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "پرس و جوي SQL"
#: po/advisory_rules.php:16
@@ -11266,7 +11286,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "پرس و جوي SQL"
#: po/advisory_rules.php:21
@@ -11441,12 +11461,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "فضاي استفادهشده"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11503,8 +11517,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11607,8 +11621,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11624,12 +11637,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11662,7 +11675,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11681,7 +11694,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11704,7 +11717,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11713,7 +11726,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11726,7 +11739,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11735,8 +11748,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11767,11 +11780,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s جدول"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11798,8 +11808,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s جدول"
#: po/advisory_rules.php:152
msgid ""
@@ -11838,7 +11851,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11859,7 +11872,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11868,7 +11881,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11887,7 +11900,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "ساخت يك صفحه جديد"
#: po/advisory_rules.php:176
@@ -11906,9 +11919,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "نمايش جدولها"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "مجموعه كاراكترهاي پرونده:"
#: po/advisory_rules.php:181
msgid ""
@@ -11930,7 +11943,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "مجموعه كاراكترهاي پرونده:"
#: po/advisory_rules.php:186
@@ -11971,7 +11984,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11989,8 +12002,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "پیگردی فعال نمی باشد."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12046,8 +12061,7 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, php-format
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr ""
#: po/advisory_rules.php:221
@@ -12070,8 +12084,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
-msgstr ""
+#, fuzzy
+msgid "Percentage of aborted connections"
+msgstr "توضيحات جدول"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12091,8 +12106,9 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
-msgstr ""
+#, fuzzy
+msgid "Rate of aborted connections"
+msgstr "توضيحات جدول"
#: po/advisory_rules.php:231
msgid "Too many connections are aborted"
@@ -12105,8 +12121,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+msgid "Percentage of aborted clients"
+msgstr "توضيحات جدول"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12126,7 +12143,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "توضيحات جدول"
#: po/advisory_rules.php:243
@@ -12151,7 +12168,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12258,6 +12275,22 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "فضاي استفادهشده"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "نمايش جدولها"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "استفاده"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "استفاده"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/fi.po b/po/fi.po
index a453d240e2..ba7f1079e5 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
+"Language: fi\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Näytä kaikki"
@@ -47,7 +47,7 @@ msgstr "Etsi"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Avaimen nimi"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Kuvaus"
@@ -201,7 +201,7 @@ msgstr "Linkitys sarakkeeseen:"
msgid "Comments"
msgstr "Kommentit"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Kommentit"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ei"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Ei"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Relaatioskeeman muokkaus tai vienti"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -617,11 +617,11 @@ msgstr "Seuranta ei ole käytössä."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
-"sohjeista%s."
+"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
+"%sohjeista%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -630,7 +630,7 @@ msgstr "Näkymä"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Kahdennus"
@@ -672,7 +672,7 @@ msgstr "Valitse taulut, joissa on ylijäämää"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Vienti"
@@ -740,10 +740,10 @@ msgstr "Seurattavat taulut"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -763,7 +763,7 @@ msgstr "Päivitetty"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Tila"
@@ -862,8 +862,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@@ -906,7 +906,7 @@ msgstr "Kirjanmerkki on poistettu."
msgid "Showing bookmark"
msgstr "Näytetään kirjanmerkki"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Kirjanmerkki %s luotu"
@@ -958,15 +958,15 @@ msgstr "Valitse painamalla"
msgid "Click to unselect"
msgstr "Poista valinta painamalla"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Haluatko varmasti "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
@@ -1046,12 +1046,12 @@ msgstr "Käyttöoikeusten uudelleenlataus"
msgid "Removing Selected Users"
msgstr "Poista valitut käyttäjät"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Sulje"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1059,17 +1059,17 @@ msgstr "Sulje"
msgid "Edit"
msgstr "Muokkaa"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Valitse palvelin"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show query box"
msgid "Live query chart"
@@ -1082,13 +1082,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Yhteensä"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1120,7 +1120,7 @@ msgstr "Valitse palvelin"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Prosessit"
@@ -1140,170 +1140,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Kyselyn ominaisuuksia"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Asetuksia ei voi ladata tai tallentaa"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Kyselyvälimuisti"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Kyselyvälimuisti"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Kyselyvälimuisti"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "Mt"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "kt"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Lokitiedostojen määrä"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Puskurivaranto"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Yhteensä"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Vapaat sivut"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Vastaanotettu"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Yhteydet"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versiot"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Liikenne"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Asetukset"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Tuhoa tietokanta"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Sovita ruudukkoon"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Ei mitään"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1311,378 +1343,378 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "Tallenna tiedostoon"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Päällä"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Pois päältä"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Muut ydinasetukset"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "settings"
msgid "Current settings"
msgstr "asetukset"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Raportin otsikko"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Ero"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Siirry tietokantaan"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Suodatin"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Suodatin"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Lisättyjen rivien määrä"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Yhteensä"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Lataa"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Lataa uudelleen"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Tuonti"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Päivitä kysely"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Ohjeet"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Lisätiedot..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication type"
msgid "Justification"
msgstr "Todennustyyppi"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Peruuta"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Lataa"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Pyynnön käsittely"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Virhe pyynnön käsittelyssä"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Sarakkeen poisto"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Pääavaimen lisäys"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Kunnossa"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Muuta tietokantojen nimiä"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Lataa tietokanta uudestaan"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Tietokannan kopiointi"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Merkistökoodauksen vaihtaminen"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Taulussa on oltava vähintään yksi kenttä."
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Luo taulu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Käytä tauluja"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
msgstr "Käytä indeksiä/indeksejä"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Näytä ruudukko"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Etsi"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide query box"
msgid "Hide search results"
msgstr "Piilota SQL-kyselykenttä"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show query box"
msgid "Show search results"
msgstr "Näytä kyselykenttä"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Selaa"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Poistetaan: %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Piilota SQL-kyselykenttä"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Näytä kyselykenttä"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Ei yhtään riviä valittu"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Muokkaa"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Suorituksen enimmäiskesto"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1690,102 +1722,102 @@ msgstr "Suorituksen enimmäiskesto"
msgid "Save"
msgstr "Tallenna"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Piilota hakusanat"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Näytä hakusanat"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Älä huomioi"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Lisää sarake/sarakkeita"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Valitse viitattava avain"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Valitse liiteavain"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Valitse perusavain tai uniikki avain"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Valitse näytettävä sarake"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Lisää asetus sarakkeelle"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Valitse painamalla"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Keksi salasana"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Keksi"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Vaihda salasana"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Lisää"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1795,29 +1827,29 @@ msgstr ""
"Uusin versio on %s, ja se on julkaistu %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr "Viimeisin vakaa versio"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Siirry tietokantaan"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Valmis"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Edellinen"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1825,149 +1857,149 @@ msgid "Next"
msgstr "Seuraava"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Tänään"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Tammi"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Helmi"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Maalis"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Huhti"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Touko"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Kesä"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Heinä"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Elo"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Syys"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Loka"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Marras"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Joulu"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Joulu"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Su"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Ti"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Ke"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "To"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Pe"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "La"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1975,84 +2007,84 @@ msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Vko"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Tunti"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuutti"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekunti"
@@ -2317,11 +2349,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
-"$sasetusskriptillä%2$s."
+"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
+"%1$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2467,7 +2499,7 @@ msgstr "jaettu"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Taulut"
@@ -2544,7 +2576,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Palvelin"
@@ -2593,7 +2625,7 @@ msgid "Documentation"
msgstr "Ohjeet"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-kysely"
@@ -2631,7 +2663,7 @@ msgid "Create PHP Code"
msgstr "Näytä PHP-koodi"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Päivitä"
@@ -2652,7 +2684,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Muokkaus"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilointi"
@@ -2761,7 +2793,7 @@ msgstr "Valitse painamalla"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5533,8 +5565,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@@ -5767,7 +5799,7 @@ msgstr "Lajittele avaimen mukaan"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5837,7 +5869,7 @@ msgid "The row has been deleted"
msgstr "Rivi on poistettu"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Lopeta"
@@ -5853,7 +5885,7 @@ msgstr "Näkyvillä rivit "
msgid "total"
msgstr "yhteensä"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "kysely kesti %01.4f sek."
@@ -5925,7 +5957,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puskurivaranto"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB:n tila"
@@ -6318,8 +6350,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6440,28 +6472,28 @@ msgid "Display MIME types"
msgstr "Näytä MIME-tyypit"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Palvelin"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Luontiaika"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Palvelimen versio"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP:n versio"
@@ -6661,54 +6693,54 @@ msgid "Generated by"
msgstr "Luontiympäristö"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "näyttää rakenteen sisällön painamalla sen nimeä"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Siirry tietokantaan"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Kohteesta %s puuttuu tiedot"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Siirry tauluun"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Vain rakenne"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Siirry näkymään"
@@ -7174,14 +7206,14 @@ msgid "Slave status"
msgstr "Alipalvelimen tila"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Muuttuja"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Arvo"
@@ -7407,7 +7439,7 @@ msgid "Returns"
msgstr "Paluutyyppi"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Aika"
@@ -7906,12 +7938,12 @@ msgid "Synchronize"
msgstr "Yhtenäistä"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binääriloki"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Muuttujat"
@@ -7964,11 +7996,11 @@ msgstr "Tyhjennä"
msgid "Columns"
msgstr "Sarakkeet"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Tallenna SQL-kysely"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
@@ -8441,7 +8473,7 @@ msgstr "Protokollan versio"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Käyttäjä"
@@ -8930,17 +8962,17 @@ msgstr "Taulua \"%s\" ei ole!"
msgid "Select binary log to view"
msgstr "Valitse näytettävä binääriloki"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Tiedostot"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Näytä katkaistut kyselyt"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Näytä kyselyt kokonaisuudessaan"
@@ -9335,8 +9367,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
@@ -9473,7 +9505,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Näytä isäntäpalvelimen tila"
@@ -9633,137 +9665,137 @@ msgstr ""
"Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. "
"Haluatko määrittää sen?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Säikeen %s lopetus onnistui."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Käsittelijä"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Kyselyvälimuisti"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Säikeet"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Väliaikaista tietoa"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Viivästetyt lisäyslauseet"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Avainvälimuisti"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Liitokset"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Lajittelu"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaktion koordinaattori"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Tyhjennä (sulje) kaikki taulut"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Näytä avoimet taulut"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Näytä alipalvelimet"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Näytä alipalvelimen tila"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Tyhjennä kyselymuisti"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Ajonaikaiset tiedot"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Näytä alipalvelimen tilan taulu"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Päivitä"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Älä vaihda salasanaa"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Näytä avoimet taulut"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Näytä avoimet taulut"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relaatiot"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Kyselyn tyyppi"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Tiedot"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9778,46 +9810,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Mukauta käynnistyssivua"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "tunnissa"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "minuutissa"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "sekunnissa"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Tieto"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9825,18 +9857,18 @@ msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossapää- ja "
"alipalvelimena."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossapääpalvelimena."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena"
"b>."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9844,11 +9876,11 @@ msgstr ""
"Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Kahdennuksen tila"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9856,47 +9888,47 @@ msgstr ""
"Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-"
"palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Vastaanotettu"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Lähetetty"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Enim. yhtäaikaisia yhteyksiä"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Epäonnistuneet yritykset"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Keskeytetty"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "Tunnus"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komento"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9907,16 +9939,16 @@ msgstr ""
"\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa "
"transaktiokyselyjen tallentamiseen."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9928,11 +9960,11 @@ msgstr ""
"nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin "
"muistissa eikä levyllä."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9940,7 +9972,7 @@ msgstr ""
"Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut "
"kyselyjä suorittaessaan."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9948,7 +9980,7 @@ msgstr ""
"Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien "
"määrä (virheenä todennäköisesti päällekkäinen avain)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9956,23 +9988,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED -rivien kirjoituksia."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "FLUSH-kyselyjä suoritettu."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Sisäisten COMMIT-kyselyjen määrä."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9982,7 +10014,7 @@ msgstr ""
"tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. "
"discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9993,7 +10025,7 @@ msgstr ""
"läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen "
"col1:sen olevan indeksoitu sarake."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -10001,7 +10033,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:1153
+#: server_status.php:1195
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 "
@@ -10011,7 +10043,7 @@ msgstr ""
"avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita "
"käyttämällä rajauksia tai jos suoritetaan indeksihaku."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10020,7 +10052,7 @@ msgstr ""
"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC "
"-kyselyllä optimoimiseen."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -10033,7 +10065,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:1156
+#: server_status.php:1198
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 "
@@ -10045,35 +10077,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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Sisäisten ROLLBACK-kyselyjen määrä."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Taulun rivien päivityspyyntöjen määrä."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Kertoo tauluihin lisättyjen rivien määrän."
-#: server_status.php:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Vapaiden sivujen määrä."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -10083,7 +10115,7 @@ msgstr ""
"parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden "
"välimuistia ei voida tyhjentää syystä tai toisesta."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -10095,11 +10127,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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Puskurivarannon kokonaiskoko sivuina."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10107,7 +10139,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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10115,11 +10147,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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10127,7 +10159,7 @@ msgstr ""
"Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa "
"puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -10141,55 +10173,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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Fsync()-toimenpiteitä tähän mennessä."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Tähän mennessä luetun tiedon määrä tavuina."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan."
-#: server_status.php:1180
+#: server_status.php:1222
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:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -10197,35 +10229,35 @@ msgstr ""
"Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin "
"tyhjentymistä jouduttiin odottamaan ennen jatkamista."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Lokitiedostojen fsync()-kirjoitusten määrä."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Lokitiedoston avointen fsync-synkronointien määrä."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Avoimet lokitiedostokirjoitukset."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Lokitiedostoon kirjoitettujen tavujen määrä."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Luotujen sivujen määrä."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10234,52 +10266,52 @@ msgstr ""
"arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen "
"koko tavuina."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Luettujen rivien määrä."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Kirjoitettujen sivujen määrä."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Tällä hetkellä odotettavien rivilukitusten määrä."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina."
-#: server_status.php:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB-tauluista poistettujen rivien määrä."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB-tauluihin lisättyjen rivien määrä."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB-taulusta luettujen rivien määrä."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB-taulun päivitettyjen rivien määrä."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10288,7 +10320,7 @@ msgstr ""
"muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto "
"tunnetaan yleisesti nimellä Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10297,20 +10329,20 @@ msgstr ""
"avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan "
"käytössä."
-#: server_status.php:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10321,16 +10353,16 @@ msgstr ""
"asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea "
"lausekkeella Key_reads / Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10341,18 +10373,18 @@ msgstr ""
"kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole "
"vielä koottu."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10360,39 +10392,39 @@ msgstr ""
"Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa "
"olla liian alhainen."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Avoinna olevien tiedostojen määrä."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Avoinna olevien taulujen määrä."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Kyselyvälimuistin vapaan muistin määrä."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Välimuistiosumien määrä."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Välimuistiin lisättyjen kyselyjen määrä."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10405,7 +10437,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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10414,19 +10446,19 @@ msgstr ""
"tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne "
"query_cache_type-asetuksen takia)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Rekisteröityjen kyselyjen määrä välimuistissa."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10434,11 +10466,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10447,7 +10479,7 @@ msgstr ""
"rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa "
"huolella.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10455,17 +10487,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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10473,13 +10505,13 @@ msgstr ""
"Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on "
"käynnistyksestään lähtien yrittänut suorittaa transaktioita."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10487,14 +10519,14 @@ msgstr ""
"Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin "
"slow_launch_time sekuntia."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10503,25 +10535,25 @@ msgstr ""
"Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, "
"sort_buffer-muuttujan arvoa voi suurentaa."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Lajiteltujen rivien määrä."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10533,7 +10565,7 @@ msgstr ""
"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai "
"käyttää hyödyksi kahdennusta."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10543,11 +10575,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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10559,69 +10591,69 @@ msgstr ""
"säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta "
"suorituskykyyn.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Hereillä olevien säikeiden määrä."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Käynnistä"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Käytä indeksiä/indeksejä"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Päivitä"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR-tekstikentän sarakkeet"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Virheiden hallinta:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Palauta oletusarvo"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "Tiedot"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10630,7 +10662,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10638,7 +10670,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10650,7 +10682,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10659,105 +10691,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Käyttö"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Tuhoa tietokanta"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Käyttö"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Näytä alipalvelimen tilan taulu"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Valitse taulut"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Virheellinen taulun nimi"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Lisää uusi palvelin"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL-kyselyt"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Näytä tilastot"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Valitse taulut"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Kyselyn tyyppi"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10765,7 +10787,7 @@ msgid_plural "%d seconds"
msgstr[0] "Sekunti"
msgstr[1] "Sekunti"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11210,9 +11232,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11287,36 +11309,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Selaa viitearvoja"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Lisätyn rivin tunnus: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Näytetään PHP-koodina"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Näytetään SQL-kysely"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Tarkista SQL-lause"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Tunniste"
@@ -12131,9 +12153,9 @@ msgid "Current amount of Questions: %s"
msgstr "Nykyinen yhteys"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Näytä SQL-kyselyt"
#: po/advisory_rules.php:16
@@ -12155,7 +12177,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Tyhjennä kyselymuisti"
#: po/advisory_rules.php:21
@@ -12340,12 +12362,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Levytilan käyttö"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12402,8 +12418,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12512,9 +12528,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Sallii tilapäisten taulujen luomisen."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12532,13 +12548,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Sallii tilapäisten taulujen luomisen."
#: po/advisory_rules.php:113
#, php-format
@@ -12570,8 +12588,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "Lähetettäviä tiedostoja ei ole"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12591,7 +12611,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12614,7 +12634,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12623,7 +12643,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12636,7 +12656,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12645,8 +12665,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12677,11 +12697,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s taulu"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12708,8 +12725,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s taulu"
#: po/advisory_rules.php:152
msgid ""
@@ -12750,8 +12770,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Lajittelupuskurin koko"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12771,8 +12793,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Lajittelupuskurin koko"
#: po/advisory_rules.php:168
#, php-format
@@ -12780,7 +12804,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12800,7 +12824,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Luo taulu"
#: po/advisory_rules.php:176
@@ -12821,10 +12845,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Näytä avoimet taulut"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Tuotavan tiedoston muoto"
#: po/advisory_rules.php:181
msgid ""
@@ -12847,7 +12871,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Tuotavan tiedoston muoto"
#: po/advisory_rules.php:186
@@ -12894,7 +12918,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Avainvälimuisti"
#: po/advisory_rules.php:201
@@ -12912,8 +12936,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Seuranta ei ole käytössä."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12971,10 +12997,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Yhteydet"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Jatkuvat yhteydet"
#: po/advisory_rules.php:221
msgid ""
@@ -12997,9 +13023,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Pakkaa yhteys"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Jatkuvat yhteydet"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -13021,7 +13047,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Jatkuvat yhteydet"
#: po/advisory_rules.php:231
@@ -13035,8 +13061,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Tuotavan tiedoston muoto"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -13057,7 +13085,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Tuotavan tiedoston muoto"
#: po/advisory_rules.php:243
@@ -13084,8 +13112,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Puskurivarannon koko"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13197,6 +13227,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Levytilan käyttö"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Näytä avoimet taulut"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Yhteydet"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Pakkaa yhteys"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Käyttö"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Käyttö"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS -työkirja"
diff --git a/po/fr.po b/po/fr.po
index c49ff16010..8d3106fdeb 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-04 21:49+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Tout afficher"
@@ -48,7 +48,7 @@ msgstr "Rechercher"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Nom de l'index"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Description"
@@ -202,7 +202,7 @@ msgstr "Relié à"
msgid "Comments"
msgstr "Commentaires"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Commentaires"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Non"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Non"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -357,7 +357,7 @@ msgstr "Éditer ou exporter un schéma relationnel"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -614,11 +614,11 @@ msgstr "Le suivi n'est pas activé."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
-"sdocumentation%s."
+"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
+"%sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -627,7 +627,7 @@ msgstr "Vue"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Réplication"
@@ -669,7 +669,7 @@ msgstr "Cocher tables avec pertes"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporter"
@@ -731,10 +731,10 @@ msgstr "Tables faisant l'objet d'un suivi"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -754,7 +754,7 @@ msgstr "Mis à jour"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "État"
@@ -855,8 +855,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@@ -903,7 +903,7 @@ msgstr "Le signet a été effacé."
msgid "Showing bookmark"
msgstr "Affichage du signet"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Signet %s créé"
@@ -957,15 +957,15 @@ msgstr "Cliquer pour sélectionner"
msgid "Click to unselect"
msgstr "Cliquer pour désélectionner"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "La commande «DROP DATABASE» est désactivée."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Voulez-vous vraiment effectuer "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
@@ -1042,12 +1042,12 @@ msgstr "Chargement des privilèges en cours"
msgid "Removing Selected Users"
msgstr "Effacement des utilisateurs sélectionnés"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Fermer"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1055,15 +1055,15 @@ msgstr "Fermer"
msgid "Edit"
msgstr "Modifier"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Graphique du trafic en temps réel"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Graphique des connexions et processus en temps réel"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Graphique des requêtes en temps réel"
@@ -1074,13 +1074,13 @@ msgstr "Données statiques"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Autres"
@@ -1110,7 +1110,7 @@ msgstr "Trafic du serveur (en Kio)"
msgid "Connections since last refresh"
msgstr "Connexions depuis le dernier rafraîchissement"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processus"
@@ -1128,154 +1128,186 @@ msgstr "Questions depuis le dernier rafraîchissement"
msgid "Questions (executed statements by the server)"
msgstr "Questions (énoncés exécutés par le serveur)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Statistiques sur les requêtes"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Impossible de lire le fichier de configuration"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Cache des requêtes"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Cache des requêtes"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Cache des requêtes"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Utilisation processeur"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Mémoire système"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Zone d'échange (swap)"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "Kio"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Charge moyenne"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Mémoire système"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Mémoire cache"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Mémoire-tampon"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Mémoire libre"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Mémoire utilisée"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Zone d'échange totale"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Zone d'échange en cache"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Zone d'échange utilisée"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Zone d'échange libre"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Octets envoyés"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Octets reçus"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Connexions"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Questions"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafic"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Paramètres"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Supprimer le graphique"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Éditer titre et étiquettes"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Ajouter graphique à la grille"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Veuillez ajouter au moins une variable à la série"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Aucune"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Reprendre la surveillance"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Mettre la surveillance en pause"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log et slow_query_log sont activés."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log est activé."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log est activé."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "general_log et slow_query_log sont désactivés."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output n'est pas réglé à TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output est réglé à TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1286,12 +1318,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:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1300,30 +1332,30 @@ msgstr ""
"défaut lors du rémarrage du serveur :"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Activer %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Désactiver %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Régler long_query_time à %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1331,43 +1363,43 @@ msgstr ""
"Vous ne pouvez changer ces variables. Connectez-vous en tant que root ou "
"contactez l'administrateur du serveur."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Changer les paramètres"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Paramètres courants"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Titre du graphique"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Différentiel"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Divisé par %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Depuis le journal des requêtes lentes (slow log)"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Depuis le journal général"
-#: js/messages.php:157
+#: js/messages.php:164
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:158
+#: js/messages.php:165
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 "
@@ -1378,7 +1410,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:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1387,254 +1419,254 @@ 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:160
+#: js/messages.php:167
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:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Aller à la table du journal"
-#: js/messages.php:163
+#: js/messages.php:170
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."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filtres"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtre"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filtrer les requêtes par mot ou expression régulière :"
-#: js/messages.php:170
+#: js/messages.php:177
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:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Somme des lignes regroupées :"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Total :"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Chargement des journaux en cours"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Recharger"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importer"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Mise-à-jour de la requête"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor system"
msgstr "Appliquer un diviseur"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentation"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Détails"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Type d'authentification"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Annuler"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Chargement en cours"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Requête en traitement"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Erreur dans le traitement de la requête"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Suppression de la colonne"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Ajout de clé primaire"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Changement de nom de la base de données"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Rafraîchir la base de données"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Copie de la base de données"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Changement du jeu de caractères"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "La table doit comporter au moins une colonne."
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Nouvelle table"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Insérer dans la table"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Cacher les index"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Montrer les index"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "En recherche"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Cacher les résultats de recherche"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Afficher les résultats de recherche"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Affichage en cours"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Destruction en cours"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Cacher zone SQL"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Montrer zone SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Aucune ligne n'a été sélectionnée"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Modifier"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Durée d'exécution de la requête"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1642,40 +1674,40 @@ msgstr "Durée d'exécution de la requête"
msgid "Save"
msgstr "Sauvegarder"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Cacher les critères de recherche"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Afficher les critères de recherche"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Ajouter des colonnes"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Sélectionnez la clé référencée"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Choisissez la clé étrangère"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Veuillez choisir la clé primaire ou un index unique"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Colonne descriptive"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1683,59 +1715,59 @@ msgstr ""
"Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les "
"sauvegardez pas. Voulez-vous continuer?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Ajouter une option pour la colonne"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Faire glisser pour réordonner"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Cliquer pour trier"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Cliquer pour marquer/enlever les marques"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Générer un mot de passe"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Générer"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Modifier le mot de passe"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "plus"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1745,27 +1777,27 @@ msgstr ""
"une mise à niveau. La version la plus récente est %s, publiée le %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", dernière version stable :"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "à jour"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Fermer"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Précédent"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1773,149 +1805,149 @@ msgid "Next"
msgstr "Suivant"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Aujourd'hui"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Janvier"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Février"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Mars"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Avril"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Juin"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Juillet"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Août"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Septembre"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Octobre"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Novembre"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Décembre"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Dimanche"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Lundi"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Mardi"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Mercredi"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Jeudi"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Vendredi"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1923,84 +1955,84 @@ msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sam"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Je"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Heure"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Seconde"
@@ -2260,8 +2292,8 @@ msgstr "Bienvenue dans %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@@ -2407,7 +2439,7 @@ msgstr "partagé"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tables"
@@ -2489,7 +2521,7 @@ msgstr ""
"configuration."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Serveur"
@@ -2539,7 +2571,7 @@ msgid "Documentation"
msgstr "Documentation"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Requête SQL"
@@ -2577,7 +2609,7 @@ msgid "Create PHP Code"
msgstr "Créer source PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Actualiser"
@@ -2598,7 +2630,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En ligne"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilage"
@@ -2703,7 +2735,7 @@ msgstr "Cliquer pour basculer"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5348,8 +5380,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@@ -5555,7 +5587,7 @@ msgstr "Trier sur l'index"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5619,7 +5651,7 @@ msgid "The row has been deleted"
msgstr "La ligne a été effacée"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Supprimer"
@@ -5635,7 +5667,7 @@ msgstr "Affichage des lignes"
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Traitement en %01.4f sec"
@@ -5708,7 +5740,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mémoire-tampon"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "État InnoDB"
@@ -6118,8 +6150,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"La documentation de PBXT et des informations additionnelles sont disponibles "
"sur %sle site de PrimeBase XT%s."
@@ -6214,28 +6246,28 @@ msgid "Display MIME types"
msgstr "Afficher les types MIME"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Client"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Généré le "
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Version du serveur"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Version de PHP"
@@ -6269,7 +6301,8 @@ msgstr ""
#: libraries/export/sql.php:45
msgid "Additional custom header comment (\\n splits lines):"
-msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
+msgstr ""
+"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
#: libraries/export/sql.php:50
msgid ""
@@ -6451,51 +6484,51 @@ msgid "Generated by"
msgstr "Généré par"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a retourné un résultat vide (aucune ligne)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Consulter le contenu d'une structure en cliquant sur son nom"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Modifiez l'un des paramètres en cliquant le lien «Options» correspondant"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Modifier sa structure via le lien «Structure»"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Aller à la base de données"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Données manquantes pour %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Aller à la table"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Structure seule"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Aller à la vue"
@@ -6957,14 +6990,14 @@ msgid "Slave status"
msgstr "État de l'esclave"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valeur"
@@ -7171,7 +7204,7 @@ msgid "Returns"
msgstr "Retourne"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Moment"
@@ -7606,12 +7639,12 @@ msgid "Synchronize"
msgstr "Synchroniser"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Log binaire"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variables"
@@ -7664,11 +7697,11 @@ msgstr "Vider"
msgid "Columns"
msgstr "Colonnes"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Conserver cette requête SQL dans les signets"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Signet visible pour les autres utilisateurs"
@@ -7769,8 +7802,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
-"PHP nécessaires ont bien été installées tel que décrit dans la %"
-"sdocumentation%s."
+"PHP nécessaires ont bien été installées tel que décrit dans la "
+"%sdocumentation%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8085,7 +8118,7 @@ msgstr "Version du protocole"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Utilisateur"
@@ -8538,17 +8571,17 @@ msgstr "Le fichier n'existe pas"
msgid "Select binary log to view"
msgstr "Sélectionnez le log binaire à consulter"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Fichiers"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Afficher les requêtes tronquées"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Afficher les requêtes complètes"
@@ -8952,8 +8985,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
@@ -9084,7 +9117,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Montrer l'état du maître"
@@ -9235,131 +9268,131 @@ msgstr ""
"Ce serveur n'est pas configuré comme esclave dans un processus de "
"réplication. Désirez-vous le configurer ?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Le processus %s a été éliminé."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Gestionnaire"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Cache des requêtes"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Fils d'exécution"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Données temporaires"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Insertions avec délais"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Cache des clés"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Jointures"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Mécanisme de tri"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Coordonnateur des transactions"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Fermer toutes les tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Montrer les tables ouvertes"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Montrer les serveurs esclaves"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Montrer l'état des serveurs esclaves"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Vider la cache des requêtes"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informations sur le serveur"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Toutes les variables d'état"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Surveillance"
-#: server_status.php:648
+#: server_status.php:690
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor"
msgstr "Appliquer un diviseur"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Taux de rafraîchissement :"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Contenant le mot :"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Afficher uniquement les valeurs d'alerte"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtrer par catégorie..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Afficher uniquement les valeurs d'alerte"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Liens connexes:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Analyseur de requêtes"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introduction"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9374,44 +9407,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Questions depuis le démarrage : %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "par heure"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "par minute"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "par seconde"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Information"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Trafic réseau depuis le démarrage : %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9419,19 +9452,19 @@ msgstr ""
"Ce serveur est un serveur maître et esclave dans le processus "
"de réplication."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Ce serveur est un serveur maître dans le processus de réplication"
"b>."
-#: server_status.php:913
+#: server_status.php:955
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:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9439,11 +9472,11 @@ msgstr ""
"Pour plus d'information sur l'état de la réplication sur ce serveur, "
"consultez la section de réplication."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "État de la réplication"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9452,35 +9485,35 @@ msgstr ""
"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être "
"inexactes."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Reçu"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Envoyé"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. de connexions simultanées"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Tentatives échouées"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Arrêts prématurés"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Commande"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9488,11 +9521,11 @@ msgstr ""
"Le nombre de connexions avortées en raison d'une interruption du client sans "
"fermeture adéquate de la connexion."
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9502,18 +9535,18 @@ msgstr ""
"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:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9526,11 +9559,11 @@ msgstr ""
"tmp_table_size afin que les tables temporaires soient maintenues en mémoire "
"au lieu d'être sur disque."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Le nombre de fichiers temporaires créés par mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9538,7 +9571,7 @@ 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:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9546,7 +9579,7 @@ msgstr ""
"Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est "
"survenue (probablement un doublon sur la clé)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9554,23 +9587,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Le nombre de lignes écrites via INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Le nombre de commandes FLUSH exécutées."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Le nombre de commandes COMMIT internes."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9580,7 +9613,7 @@ msgstr ""
"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:1151
+#: server_status.php:1193
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, "
@@ -9591,7 +9624,7 @@ msgstr ""
"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une "
"colonne indexée."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9599,7 +9632,7 @@ 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:1153
+#: server_status.php:1195
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 "
@@ -9609,7 +9642,7 @@ msgstr ""
"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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9617,7 +9650,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -9630,7 +9663,7 @@ msgstr ""
"demandent à MySQL de parcourir des tables en entier, ou vous avez des "
"jointures qui n'utilisent pas correctement les clés."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9642,35 +9675,35 @@ msgstr ""
"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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Le nombre d'énoncés ROLLBACK internes."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Le nombre de pages contenant des données."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Le nombre de pages contenant des données «dirty»."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Le nombre de pages libres."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9680,7 +9713,7 @@ msgstr ""
"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une "
"autre raison."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9692,11 +9725,11 @@ msgstr ""
"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Taille totale de la réserve, en pages."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9705,7 +9738,7 @@ msgstr ""
"lorsqu'une requête doit balayer une large portion de table en ordre "
"discontinu."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9713,11 +9746,11 @@ 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:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9725,7 +9758,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9739,51 +9772,51 @@ msgstr ""
"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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Le nombre d'écritures faites dans la réserve InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Le nombre d'opérations fsync() faites jusqu'à présent."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Le nombre d'opérations fsync() actuellement en attente."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Le nombre actuel de lectures en attente."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Le nombre actuel d'écritures en attente."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "La quantité d'octets lus jusqu'à présent."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Le nombre total de lectures de données."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Le nombre total d'écritures de données."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "La quantité d'octets écrits jusqu'à présent."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Le nombre d'opérations «doublewrite» effectuées."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9791,35 +9824,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Le nombre de requêtes d'écritures sur le fichier témoin."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Le nombre d'écritures physiques au fichier témoin."
-#: server_status.php:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Le nombre d'écritures du fichier témoin en attente."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Le nombre d'octets écrits sur le fichier témoin."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Le nombre de pages créées."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9828,51 +9861,51 @@ msgstr ""
"valeurs sont comptées par page; la taille de page leur permet d'être "
"facilement converties en octets."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Le nombre de pages lues."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Le nombre de pages écrites."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Le nombre de verrous d'enregistrements actuellement en attente."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Le nombre de lignes supprimées des tables InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Le nombre de lignes insérées dans des tables InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Le nombre de lignes lues dans des tables InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Le nombre de lignes mises à jour dans des tables InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9881,7 +9914,7 @@ msgstr ""
"pas encore transférés sur disque. Anciennement connu sous le nom "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9890,7 +9923,7 @@ msgstr ""
"cette valeur pour déterminer la proportion de la cache de clés qui est "
"utilisée."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9900,11 +9933,11 @@ msgstr ""
"maximum du nombre de blocs qui ont été utilisés en même temps dans le cache "
"de clés."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9915,15 +9948,15 @@ msgstr ""
"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read "
"requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9934,18 +9967,18 @@ msgstr ""
"pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore "
"été compilée."
-#: server_status.php:1211
+#: server_status.php:1253
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:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9953,19 +9986,19 @@ msgstr ""
"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table "
"est probablement trop petite."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Le nombre de fichiers qui sont ouverts."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Le nombre de tables qui sont ouvertes."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9975,19 +10008,19 @@ msgstr ""
"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la "
"commande FLUSH QUERY CACHE."
-#: server_status.php:1218
+#: server_status.php:1260
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:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Le nombre de succès dans la cache."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Le nombre de requêtes ajoutées à la cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9999,7 +10032,7 @@ msgstr ""
"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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10007,19 +10040,19 @@ 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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Le nombre de requêtes enregistrées dans la cache."
-#: server_status.php:1224
+#: server_status.php:1266
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:1225
+#: server_status.php:1267
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:1226
+#: server_status.php:1268
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."
@@ -10027,13 +10060,13 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10042,7 +10075,7 @@ msgstr ""
"ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos "
"tables.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10050,19 +10083,19 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10070,11 +10103,11 @@ 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:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10082,14 +10115,14 @@ msgstr ""
"Le nombre de fils d'exécution dont le temps de création a excédé "
"slow_launch_time secondes."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10098,23 +10131,23 @@ 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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Le nombre de tri effectués avec des plages."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Le nombre de lignes triées."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10126,7 +10159,7 @@ msgstr ""
"des problèmes de performance, commencez par optimiser vos requêtes, puis "
"subdivisez vos tables ou encore utiliser la réplication."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10136,11 +10169,11 @@ msgstr ""
"calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous "
"devriez augmenter la taille de cette cache."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Le nombre de connexions ouvertes actuellement."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10153,63 +10186,63 @@ msgstr ""
"perceptible de la performance si votre serveur gère correctement les fils "
"d'exécution.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Le nombre de fils d'exécution non suspendus."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Démarrer la surveillance"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Consignes / réglages"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Terminé de modifier les graphiques"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Ajouter un graphique"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Modifier les graphiques"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Taux de rafraîchissement"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Chart columns:"
msgid "Chart columns"
msgstr "Colonnes du graphique :"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Gestion des erreurs : "
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Ramener la valeur par défaut"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Consignes pour la surveillance"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10223,7 +10256,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:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10231,7 +10264,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: Ok, you are good to go! Once you click "
@@ -10262,7 +10295,7 @@ msgstr ""
"déplaçant sur le graphique. Ceci va charger les statistiques à partir des "
"journaux et vous aidera à trouver la cause du pic dans l'activité.
"
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10276,76 +10309,70 @@ msgstr ""
"qu'une petite 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:1471
-msgid "CPU Usage"
-msgstr "Utilisation du processeur"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Supprimer le graphique"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Utilisation de la mémoire"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Utilisation de la zone d'échange"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Variables d'état"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Choisissez les séries :"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Couramment surveillés"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "ou entrez un nom de variable :"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Afficher en tant que valeur différentielle"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Appliquer un diviseur"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Ajouter l'unité aux valeurs de données"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Ajouter cette série"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Effacer la série"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Séries dans le graphique :"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Statistiques des journaux"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Sélectionnez un intervalle de temps :"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE"
-#: server_status.php:1546
+#: server_status.php:1583
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:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10353,18 +10380,18 @@ msgstr ""
"
Choississez depuis quel journal les statistiques doivent être générées."
"p>Les résultats sont regroupés par le texte des requêtes."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Analyseur de requêtes"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d seconde"
msgstr[1] "%d secondes"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10676,8 +10703,8 @@ msgid ""
msgstr ""
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
-"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
-"s."
+"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
+"%s."
#: setup/lib/index.lib.php:276
msgid ""
@@ -10729,8 +10756,8 @@ msgid ""
msgstr ""
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
"secondes peut causer des interruptions de la session de travail si le "
-"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
-"d)."
+"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
+"%d)."
#: setup/lib/index.lib.php:286
#, php-format
@@ -10749,8 +10776,8 @@ msgid ""
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification cookie et que le paramètre %sLogin "
-"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%"
-"s doit avoir une valeur plus petite ou égale à celui-ci."
+"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
+"%s doit avoir une valeur plus petite ou égale à celui-ci."
#: setup/lib/index.lib.php:290
#, php-format
@@ -10760,8 +10787,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
-"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
+"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
+"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."
@@ -10826,34 +10853,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Afficher les valeurs de la table liée"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Le signet «%s» a été utilisé comme requête par défaut."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identifiant de la ligne insérée : %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Affichage du code PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Affichage de la requête SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL validé"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Il y a des problèmes avec les index de la table `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Intitulé"
@@ -11600,9 +11627,9 @@ msgid "Current amount of Questions: %s"
msgstr "Connexion actuelle"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Afficher les requêtes SQL"
#: po/advisory_rules.php:16
@@ -11624,7 +11651,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Vider la cache des requêtes"
#: po/advisory_rules.php:21
@@ -11812,12 +11839,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Espace utilisé"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11874,8 +11895,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11984,9 +12005,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permission de créer des tables temporaires."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12004,13 +12025,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permission de créer des tables temporaires."
#: po/advisory_rules.php:113
#, php-format
@@ -12042,8 +12065,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Il n'y a aucune procédure à afficher."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12063,7 +12088,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12086,7 +12111,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12095,7 +12120,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12108,8 +12133,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "À quel endroit afficher les liens pour chaque ligne de données"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12119,8 +12146,8 @@ msgstr "À quel endroit afficher les liens pour chaque ligne de données"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12152,10 +12179,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s table"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "À quel endroit afficher les liens pour chaque ligne de données"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12182,8 +12208,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s table"
#: po/advisory_rules.php:152
msgid ""
@@ -12224,8 +12253,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Taille de la mémoire tampon"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12245,8 +12276,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Taille de la mémoire tampon"
#: po/advisory_rules.php:168
#, php-format
@@ -12254,7 +12287,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12274,7 +12307,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Nouvelle table"
#: po/advisory_rules.php:176
@@ -12295,10 +12328,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Montrer les tables ouvertes"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format du fichier d'importation"
#: po/advisory_rules.php:181
msgid ""
@@ -12321,7 +12354,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format du fichier d'importation"
#: po/advisory_rules.php:186
@@ -12368,7 +12401,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Cache des clés"
#: po/advisory_rules.php:201
@@ -12386,8 +12419,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Le suivi n'est pas activé."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12446,10 +12481,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time est réglé à %d seconde(s)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Connexions"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Connexions persistantes"
#: po/advisory_rules.php:221
msgid ""
@@ -12472,9 +12507,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Utiliser le mode compression sur la connexion"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Connexions persistantes"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12496,7 +12531,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Connexions persistantes"
#: po/advisory_rules.php:231
@@ -12510,8 +12545,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format du fichier d'importation"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12532,7 +12569,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format du fichier d'importation"
#: po/advisory_rules.php:243
@@ -12559,8 +12596,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Taille de la mémoire-tampon"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12672,6 +12711,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Espace utilisé"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Montrer les tables ouvertes"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Connexions"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Utiliser le mode compression sur la connexion"
+
+#~ msgid "CPU Usage"
+#~ msgstr "Utilisation du processeur"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Utilisation de la mémoire"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Utilisation de la zone d'échange"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/gl.po b/po/gl.po
index c6959fae21..1f7e57fd24 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \n"
+"Language: gl\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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Ver todos os rexistros"
@@ -48,7 +48,7 @@ msgstr "Procurar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Nome chave"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Descrición"
@@ -204,7 +204,7 @@ msgstr "Vincúlase con"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -215,12 +215,12 @@ msgstr "Comentarios"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Non"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -236,7 +236,7 @@ msgstr "Non"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -368,7 +368,7 @@ msgstr "Esquema relacional"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -641,11 +641,11 @@ msgstr "O seguemento non está activado."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
-"s."
+"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
+"%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -654,7 +654,7 @@ msgstr "Vista"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replicación"
@@ -696,7 +696,7 @@ msgstr "Exceso na comprobación"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
@@ -764,10 +764,10 @@ msgstr "Táboas seguidas"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -787,7 +787,7 @@ msgstr "Actualizada"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Estado"
@@ -886,11 +886,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
-"sdocumentación%s para averiguar como evitar este límite."
+"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
+"%sdocumentación%s para averiguar como evitar este límite."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -930,7 +930,7 @@ msgstr "Eliminouse o marcador."
msgid "Showing bookmark"
msgstr "A mostrar o marcador"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Creouse o marcador %s"
@@ -982,15 +982,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Non se permiten as ordes \"Eliminar a base de datos\"."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Seguro? "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Está a piques de DESTRUÍR unha base de datos enteira!"
@@ -1081,12 +1081,12 @@ msgstr "A recargar os privilexios"
msgid "Removing Selected Users"
msgstr "Eliminar os usuarios seleccionados"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1094,17 +1094,17 @@ msgstr "Fechar"
msgid "Edit"
msgstr "Modificar"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Escolla de servidor"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1117,13 +1117,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1155,7 +1155,7 @@ msgstr "Escolla de servidor"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesos"
@@ -1175,174 +1175,206 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
msgstr "Mostrar as estatísticas"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Non se puido cargar ou gravar a configuración"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "caché de procuras"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "caché de procuras"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "caché de procuras"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Número de ficheiros de rexistro"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Reserva da memoria intermedia"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Páxinas libres"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Recibido"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Conexións"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versións"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Tráfico"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "settings"
msgid "Settings"
msgstr "opcións"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Mudar o nome da base de datos para"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Axustar á grella"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Ningunha"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1350,400 +1382,400 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "Enviar (gravar nun ficheiro) "
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Activado"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Desactivar"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Outras opcións principais"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "settings"
msgid "Current settings"
msgstr "opcións"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Título do informe"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Diferenza"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Go to database"
msgid "Jump to Log table"
msgstr "Ir á base de datos"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filtro"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtro"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Número de fileiras inseridas"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Total"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Load"
msgid "Loading logs"
msgstr "Cargar"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Recargar"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importar"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Actualizar a procura"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentación"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Detalles..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Customization"
msgid "Justification"
msgstr "Personalización"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "Cargar"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesos"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Conforme"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Mudar o nome da base de datos para"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Mudar o nome da base de datos para"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copiar a base de datos para"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Conxunto de caracteres"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "A táboa ha de ter, polo menos, un campo."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Crear táboas"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Usar as táboas"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
msgstr "Aplicar índice(s)"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Mostrar a grella"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Procurar"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search results"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search results"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Visualizar"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "A eliminar %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Non hai ningunha fileira seleccionada"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Mudar"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Tempo máximo de execución"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1751,112 +1783,112 @@ msgstr "Tempo máximo de execución"
msgid "Save"
msgstr "Gardar"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Engadir columna(s)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Seleccionar a chave referida"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Escoller unha chave externa"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Escolla a chave primaria ou unha chave única"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Escolla o campo que quere que se mostre"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Xerar un contrasinal"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Xerar"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Trocar o contrasinal"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Lu"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1866,33 +1898,33 @@ msgstr ""
"actualizala. A versión máis recente é %s, publicada o %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Comprobar cal é a última versión"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ir á base de datos"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Doar"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1900,96 +1932,96 @@ msgid "Next"
msgstr "Seguinte"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binario "
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Maio"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Xuño"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Xullo"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1997,78 +2029,78 @@ msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Do"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lu"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ma"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ve"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2076,102 +2108,102 @@ msgid "Sun"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sá"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mé"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Xo"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sá"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "en uso"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2442,8 +2474,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@@ -2594,7 +2626,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Táboas"
@@ -2682,7 +2714,7 @@ msgstr ""
"O nome de servidor non é válido para o servidor %1$s. Revise a configuración."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Servidor"
@@ -2731,7 +2763,7 @@ msgid "Documentation"
msgstr "Documentación"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "orde SQL"
@@ -2771,7 +2803,7 @@ msgid "Create PHP Code"
msgstr "Crear código PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Refrescar"
@@ -2794,7 +2826,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motores"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Análise do desempeño"
@@ -2901,7 +2933,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5731,8 +5763,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de hora. Produciranse transformacións en "
@@ -5971,7 +6003,7 @@ msgstr "Ordenar pola chave"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -6041,7 +6073,7 @@ msgid "The row has been deleted"
msgstr "Eliminouse o rexistro"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Matar (kill)"
@@ -6057,7 +6089,7 @@ msgstr "A mostrar rexistros "
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "a pesquisa levou %01.4f segundos"
@@ -6136,7 +6168,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva da memoria intermedia"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Estado de InnoDB"
@@ -6534,8 +6566,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6654,28 +6686,28 @@ msgid "Display MIME types"
msgstr "Tipos MIME dispoñíbeis"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Xerado en"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versión do servidor"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versión do PHP"
@@ -6875,54 +6907,54 @@ msgid "Generated by"
msgstr "Xerado por"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Ver o contido dunha estrutura premendo o seu nome"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Ir á base de datos"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Faltan datos de %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Ir á táboa"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Só a estrutura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Ir á vista"
@@ -7390,14 +7422,14 @@ msgid "Slave status"
msgstr "Estado do escravo"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variábel"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valor"
@@ -7623,7 +7655,7 @@ msgid "Returns"
msgstr "Tipo de retorno"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tempo"
@@ -8126,12 +8158,12 @@ msgid "Synchronize"
msgstr "Sincronizar"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Ficheiro de rexistro binario"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variábeis"
@@ -8186,11 +8218,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Nomes das columnas"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Gardar esta procura de SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Permitir que calquera usuario poida acceder a este marcador"
@@ -8664,7 +8696,7 @@ msgstr "Versión do protocolo"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Usuario"
@@ -8823,8 +8855,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
-"sdocumentation%s."
+"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
+"%sdocumentation%s."
#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152
msgid "No databases"
@@ -9164,17 +9196,17 @@ msgstr "Non existe a táboa \"%s\"."
msgid "Select binary log to view"
msgstr "Seleccione o ficheiro de rexistro binario que queira ver"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Ficheiros"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Interrumpir as procuras mostradas"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Mostrar as procuras completas"
@@ -9566,8 +9598,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
@@ -9704,7 +9736,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Mostrar o estado do principal"
@@ -9864,138 +9896,138 @@ msgstr ""
"Este servidor non está configurado como escravo nun proceso de replicación. "
"Desexa configuralo?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Finalizouse o fío %s."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea fechado."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "caché de procuras"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Fíos"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Datos temporais"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Insercións demoradas"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "caché da chave"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Unións"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Coordinador da transacción"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Limpar (fechar) todas as táboas"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Mostrar os servidores escravos"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Mostrar o estado dos escravos"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Limpar a caché da pesquisa"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Información sobre o tempo de execución"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Ver a táboa de estado do escravo"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Refrescar"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Non mude o contrasinal"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacións"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipo de procura"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Información"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -10010,46 +10042,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Personalizar a páxina de inicio"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "por hora"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "por segundo"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Informacións"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Este servidor de MySQL leva funcionando %s. Iniciouse às %s."
-#: server_status.php:909
+#: server_status.php:951
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -10058,21 +10090,21 @@ msgid ""
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:911
+#: server_status.php:953
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:913
+#: server_status.php:955
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:916
+#: server_status.php:958
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -10086,11 +10118,11 @@ msgstr ""
"b>. Para máis información acerca do estado de replicación do servidor visite "
"a sección sobre replicación."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Estado da replicación"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10099,47 +10131,47 @@ msgstr ""
"que esas estatísticas, tal e como as transmite o servidor de MySQL, poden "
"resultar incorrectas."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Recibido"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "conexións simultáneas máximas"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Tentativas falidas"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Cancelado"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "Identificador"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Orde"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Non se puido conectar co servidor de MySQL"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -10149,16 +10181,16 @@ msgstr ""
"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal "
"para almacenar instrucións para a transacción."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Número de transaccións que utilizaron o caché do rexistro binario."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -10170,11 +10202,11 @@ msgstr ""
"incremente o valor de tmp_table_size para que as táboas temporais se baseen "
"na memoria en vez de no disco."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Número de ficheiros temporais creados por mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10182,7 +10214,7 @@ msgstr ""
"Número de táboas temporais na memoria creadas automaticamente polo servidor "
"ao executar instrucións."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10190,7 +10222,7 @@ msgstr ""
"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro "
"(probabelmente unha chave duplicada)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10198,23 +10230,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Número de fileiras INSERT DELAYED escritas."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Número de instrucións FLUSH executadas."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Número de instrucións COMMIT internas."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -10224,7 +10256,7 @@ msgstr ""
"se sabe dunha táboa cun nome dado. Isto chámase descuberta. "
"Handler_discovery indica o número de veces que se descobriron táboas."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -10235,7 +10267,7 @@ msgstr ""
"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea "
"indexada."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -10243,7 +10275,7 @@ msgstr ""
"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, "
"é unha boa indicación de que as procuras e táboas están ben indexadas."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -10253,7 +10285,7 @@ msgstr ""
"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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10261,7 +10293,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -10273,7 +10305,7 @@ msgstr ""
"Posibelmente terá un monte de procuras que esixan que MySQL examine táboas "
"completas ou ten unións que non usan as chaves axeitadamente."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -10285,35 +10317,35 @@ msgstr ""
"táboas non están indexadas axeitadamente ou que as súas procuras non están "
"escritas para aproveitar os índices de que dispón."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Número de páxinas actualmente suxas."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Número de páxinas do búfer que se pediu que se limpasen."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Número de páxinas libres."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -10323,7 +10355,7 @@ msgstr ""
"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por "
"algunha outra razón."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -10335,11 +10367,11 @@ msgstr ""
"se pode calcular así: Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Tamaño total do búfer, en páxinas."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10348,7 +10380,7 @@ msgstr ""
"cando unha procura vai examinar unha porción grande dunha táboa mais en orde "
"aleatoria."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10356,11 +10388,11 @@ 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:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10368,7 +10400,7 @@ msgstr ""
"Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo "
"que efectuar por medio de lecturas dunha única páxina."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -10382,55 +10414,55 @@ msgstr ""
"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser "
"pequeno."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Número de veces que se escribiu no búfer InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Número de operacións fsync() até o momento."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Número actual de operacións fsync() pendentes."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Número actual de lecturas pendentes."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Número actual de escritas pendentes."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Cantidade de datos lida até o momento, en bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Número total de lecturas de datos."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Número total de escritas de datos."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Cantidade de datos escrita até o momento, en bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -10438,35 +10470,35 @@ msgstr ""
"Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e "
"houbo que agardar até que se limpase para continuar."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Número de peticións de escrita no rexistro."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Número de escritas físicas no ficheiro de rexistro."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Número de fsyncs do ficheiro de rexistro pendentes."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Escritas no ficheiro de rexistro pendentes."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Número de bytes escritos no ficheiro de rexistro."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Número de páxinas creadas."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10475,55 +10507,55 @@ msgstr ""
"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente "
"en bytes."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Número de páxinas lidas."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Número de páxinas escritas."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Número de fileiras eliminadas das táboas InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Número de fileiras inseridas nas táboas InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Número de fileiras lidas das táboas InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Número de fileiras actualizadas en táboas InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10531,7 +10563,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -10539,7 +10571,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -10549,11 +10581,11 @@ msgstr ""
"referencia superior que indica o número máximo de bloques que se teñen "
"empregado."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10563,15 +10595,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10582,19 +10614,19 @@ msgstr ""
"procura diferentes para a mesma pesquisa. O valor por omisión é 0, que "
"significa que aínda non se compilou ningunha procura."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Número de procuras que están a agardar para seren escritas nas fileiras "
"INSERT DELAYED."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10602,38 +10634,38 @@ msgstr ""
"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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Número de ficheiros abertos."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Número de táboas abertas."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Cantidade de memoria libre para a caché de procuras."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Número de impactos na caché."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Número de procuras adicionadas na caché."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10645,7 +10677,7 @@ msgstr ""
"caché de procuras. A caché de procuras utiliza unha estratexia de utilizado "
"menos recentemente (LRU) para decidir que procuras debe eliminar da caché."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10653,19 +10685,19 @@ msgstr ""
"Número de procuras non enviadas á caché (que non se poden enviar debido á "
"configuración de query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Número de procuras rexistradas na caché."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Número total de bloques na caché de procuras."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Estado da replicación en modo seguro (aínda non realizado)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10673,13 +10705,13 @@ msgstr ""
"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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Número de unións que utilizaron un intervalo de procura nunha táboa de "
"referencia."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10688,7 +10720,7 @@ msgstr ""
"cada fileira (se non for 0, debería comprobar con atención os índices das "
"táboas)."
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10696,15 +10728,15 @@ msgstr ""
"Número de unións que utilizaron intervalos na primeira táboa (Normalmente "
"non é grave, mesmo de ser grande)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "Número de unións que realizaron un exame completo da primeira táboa."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10712,11 +10744,11 @@ msgstr ""
"Número total de veces (desde o inicio) que o fío de replicación SQL escravo "
"reintentou as transaccións."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10724,14 +10756,14 @@ msgstr ""
"Número de fíos aos que lles levou crearse máis segundos dos indicados en "
"slow_launch_time."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Número de procuras ás que lles levou máis segundos dos indicados en "
"long_query_time."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10741,23 +10773,23 @@ msgstr ""
"este valor for grande, sería ben que considerase incrementar o valor da "
"variábel de sistema sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Número de ordenacións feitas con intervalos."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Número de fileiras ordenadas."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Número de ordenacións realizadas examinando a táboa."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10769,7 +10801,7 @@ msgstr ""
"debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa "
"ou táboas, ora utilizar replicación."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10779,11 +10811,11 @@ msgstr ""
"calcular como Threads_created/Connections. Se este valor for vermello, "
"debería aumentar a thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Número de conexións abertas neste momento."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10795,69 +10827,69 @@ msgstr ""
"non fornece unha mellora notábel no desempeño se ten unha boa implementación "
"de fíos.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Número de fíos que non están a durmir."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Inicio"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Aplicar índice(s)"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Refrescar"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "Columnas de área de texto de CHAR"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Xestión de erros:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Volver ao valor por omisión"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "Información"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10866,7 +10898,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10874,7 +10906,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10886,7 +10918,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10895,105 +10927,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Uso"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "Mudar o nome da base de datos para"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Uso"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Ver a táboa de estado do escravo"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Seleccionar táboas"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Non se admite este nome de táboa."
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Engadir un servidor novo"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "Solicitudes SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Mostrar as estatísticas"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Seleccionar táboas"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipo de procura"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11001,7 +11023,7 @@ msgid_plural "%d seconds"
msgstr[0] "por segundo"
msgstr[1] "por segundo"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11454,9 +11476,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11528,36 +11550,36 @@ msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais
msgid "Browse foreign values"
msgstr "Visualizar valores alleos"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identificador da fileira inserida: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Mostrar procura SQL"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validar o SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas cos índices da táboa `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Nome"
@@ -12369,9 +12391,9 @@ msgid "Current amount of Questions: %s"
msgstr "A conexión non é segura"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Mostrar as procuras SQL"
#: po/advisory_rules.php:16
@@ -12393,7 +12415,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Limpar a caché da pesquisa"
#: po/advisory_rules.php:21
@@ -12578,12 +12600,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Uso do espazo"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12640,8 +12656,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12749,9 +12765,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permite crear táboas temporais."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12769,13 +12785,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permite crear táboas temporais."
#: po/advisory_rules.php:113
#, php-format
@@ -12807,8 +12825,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "Rate of joins without indexes"
+msgstr "Non hai ningún servidor configurado"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12828,7 +12848,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12851,7 +12871,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12860,7 +12880,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12873,7 +12893,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12882,8 +12902,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12914,10 +12934,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s táboa(s)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12944,8 +12962,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s táboa(s)"
#: po/advisory_rules.php:152
msgid ""
@@ -12986,8 +13006,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Tamaño da memoria intermedia de ordenación"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -13007,8 +13029,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Tamaño da memoria intermedia de ordenación"
#: po/advisory_rules.php:168
#, php-format
@@ -13016,7 +13040,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -13036,7 +13060,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Crear táboas"
#: po/advisory_rules.php:176
@@ -13057,10 +13081,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Mostrar as táboas abertas"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formato do ficheiro importado"
#: po/advisory_rules.php:181
msgid ""
@@ -13083,7 +13107,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formato do ficheiro importado"
#: po/advisory_rules.php:186
@@ -13130,7 +13154,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "caché da chave"
#: po/advisory_rules.php:201
@@ -13148,8 +13172,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "O seguemento non está activado."
#: po/advisory_rules.php:206
#, fuzzy
@@ -13207,10 +13233,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Conexións"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Conexións persistentes"
#: po/advisory_rules.php:221
msgid ""
@@ -13233,9 +13259,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Comprimir a conexión"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Conexións persistentes"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -13257,7 +13283,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Conexións persistentes"
#: po/advisory_rules.php:231
@@ -13271,8 +13297,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formato do ficheiro importado"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -13293,7 +13321,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formato do ficheiro importado"
#: po/advisory_rules.php:243
@@ -13320,8 +13348,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Tamaño da reserva da memoria intermedia"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13433,6 +13463,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Uso do espazo"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Mostrar as táboas abertas"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Conexións"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Comprimir a conexión"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Uso"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Uso"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Libro de traballo XLS do Excel 97-2003"
diff --git a/po/he.po b/po/he.po
index 0858d38759..83f87e6e57 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: \n"
"Language-Team: hebrew \n"
+"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "הצג הכל"
@@ -44,7 +44,7 @@ msgstr "חיפוש"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -85,7 +85,7 @@ msgstr "שמות מפתח"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "תיאור"
@@ -198,7 +198,7 @@ msgstr "קישורים אל"
msgid "Comments"
msgstr "הערות"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -209,12 +209,12 @@ msgstr "הערות"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "לא"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -230,7 +230,7 @@ msgstr "לא"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -360,7 +360,7 @@ msgstr "הצגת תרשים PDF"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -632,8 +632,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -643,7 +643,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "יחסים"
@@ -686,7 +686,7 @@ msgstr "בדיקת טבלאות עבור תקורה"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ייצוא"
@@ -752,10 +752,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -776,7 +776,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "מצב"
@@ -877,8 +877,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -914,7 +914,7 @@ msgstr "כתובת מועדפת נמחקה."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -961,15 +961,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "הוראות \"DROP DATABASE\" מבוטלות."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "האם אתה באמת רוצה "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "אתה עומד להרוס מאגר נתונים שלם!"
@@ -1055,12 +1055,12 @@ msgstr "הרשאות גלובליות"
msgid "Removing Selected Users"
msgstr "הסרת משתמשים שנבחרו"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1068,17 +1068,17 @@ msgstr ""
msgid "Edit"
msgstr "עריכה"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "בחירת שרת"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "שאילתת SQL"
@@ -1090,13 +1090,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "סה\"כ"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1128,7 +1128,7 @@ msgstr "בחירת שרת"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "תהליכים"
@@ -1148,168 +1148,195 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "סטטיסטיקת שורה"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "סוג שאילתה"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "סוג שאילתה"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "סוג שאילתה"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "סה\"כ"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "סה\"כ"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "דפים חופשיים"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "התקבל"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "חיבורים"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Persian"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Traffic"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "תכונות קשר כלליות"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "שינוי שם מאגר נתונים אל"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "ללא"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1317,385 +1344,385 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "מופעל"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "מבוטל"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "תכונות קשר כלליות"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "תכונות קשר כלליות"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "קבצי ייבוא"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "אין מאגרי נתונים"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of fields"
msgid "Sum of grouped rows:"
msgstr "מספר שדות"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "סה\"כ"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "מקומי"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "שינוי שם מאגר נתונים אל"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "ייצוא"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "עדכון שאילתה"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "תיעוד"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "תיעוד"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "מקומי"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "תהליכים"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "אישור"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "שינוי שם מאגר נתונים אל"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "שינוי שם מאגר נתונים אל"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "העתקת מאגר נתונים אל"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "קידוד"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "טבלה חייבית להכיל לפחות שדה אחד."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "יצירת עמוד חדש"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "השתמש בטבלאות"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "הוספת שדה חדש"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "הראה רשת"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "חיפוש"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "שאילתת SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "שאילתת SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "עיון"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "מוחק %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "שאילתת SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "שאילתת SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "לא נבחרו שורות"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "שינוי"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1703,110 +1730,110 @@ msgstr ""
msgid "Save"
msgstr "שמירה"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "התעלמות"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "הוספת %s תאים"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "בחירת שדה להצגה"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "ייצור סיסמא"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "ייצור"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "שינוי סיסמא"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "יום שני"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1814,30 +1841,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "אין מאגרי נתונים"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ללא"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "הקודם"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1845,96 +1872,96 @@ msgid "Next"
msgstr "הבא"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "סה\"כ"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "בינארי"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "מרץ"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "אפריל"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "מאי"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "יוני"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "יולי"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "אוגוסט"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "אוקטובר"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1942,78 +1969,78 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "דצמבר"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "יום ראשון"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "יום שני"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "יום שלישי"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "יום שישי"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2021,100 +2048,100 @@ msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "שבת"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "יום ראשון"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "יום שני"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "יום שלישי"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "יום רביעי"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "יום חמישי"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "יום שישי"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "שבת"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "בשימוש"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2368,8 +2395,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2508,7 +2535,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "טבלאות"
@@ -2585,7 +2612,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "שרת"
@@ -2634,7 +2661,7 @@ msgid "Documentation"
msgstr "תיעוד"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "שאילתת SQL"
@@ -2672,7 +2699,7 @@ msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "רענון"
@@ -2696,7 +2723,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "מנועים"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2803,7 +2830,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5378,8 +5405,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5590,7 +5617,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5662,7 +5689,7 @@ msgid "The row has been deleted"
msgstr "השורה נמחקה"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5678,7 +5705,7 @@ msgstr "מראה שורות"
msgid "total"
msgstr "סה\"כ"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "שאילתה לקחה %01.4f שניות"
@@ -5750,7 +5777,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "מצב InnoDB"
@@ -6095,8 +6122,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6213,28 +6240,28 @@ msgid "Display MIME types"
msgstr "סוגי MIME זמינים"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "מארח"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "זמן ייצור"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "גרסת שרת"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "גרסת PHP"
@@ -6434,49 +6461,49 @@ msgid "Generated by"
msgstr "נוצר ע\"י"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "אין מאגרי נתונים"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "מבנה בלבד"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6928,14 +6955,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "משתנה"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "ערך"
@@ -7151,7 +7178,7 @@ msgid "Returns"
msgstr "אפשרויות טבלה"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "זמן"
@@ -7629,12 +7656,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "דו\"ח בינארי"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "משתנים"
@@ -7692,11 +7719,11 @@ msgstr "לוח שנה"
msgid "Columns"
msgstr "שמות עמודה"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "הכנס שאילתת SQL זאת למועדפים"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
@@ -8069,7 +8096,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "משתמש"
@@ -8529,18 +8556,18 @@ msgstr "הטבלה \"%s\" לא קיימת!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "שדות"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "הראה שאילתות שלמות"
@@ -8931,8 +8958,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
@@ -9059,7 +9086,7 @@ msgstr "ההרשאות נטענו מחדש בהצלחה."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9198,136 +9225,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "סוג שאילתה"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "השתמש בהכנסות מעוכבות"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "ראיית טבלאות"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "מידע זמן ריצה"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "רענון"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "אל תשנה את הסיסמא"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "ראיית טבלאות"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "ראיית טבלאות"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "יחסים"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "סוג שאילתה"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "פונקציה"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9342,129 +9369,129 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "לשעה"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "לדקה"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "לשנייה"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "משפטים"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "התקבל"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "נשלח"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "ניסיונות כושלים"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "בוטל"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "קוד זיהוי"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "פקודה"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9472,78 +9499,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9551,7 +9578,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9559,42 +9586,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9602,33 +9629,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9637,227 +9664,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9865,99 +9892,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9965,18 +9992,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9984,64 +10011,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "שבת"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "הוספת שדה חדש"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "רענון"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10050,7 +10077,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10058,7 +10085,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10070,7 +10097,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10079,98 +10106,88 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "שימוש"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "שינוי שם מאגר נתונים אל"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "שימוש"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "בחירת טבלאות"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "הוספת משתמש חדש"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "שאילתת SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "סטטיסטיקת שורה"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "בחירת הכל"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "סוג שאילתה"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10178,7 +10195,7 @@ msgid_plural "%d seconds"
msgstr[0] "לשנייה"
msgstr[1] "לשנייה"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10593,36 +10610,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "בדיקת תקינות SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "בעיות עם אינדקסים של טבלה `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "תווית"
@@ -11415,8 +11432,8 @@ msgid "Current amount of Questions: %s"
msgstr "חיבורים"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "הראה שאילתות שלמות"
#: po/advisory_rules.php:16
@@ -11437,7 +11454,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "שאילתת SQL"
#: po/advisory_rules.php:21
@@ -11617,12 +11634,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "שימוש מקום"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11678,8 +11689,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11784,9 +11795,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "מאפשר יצירת טבלאות זמניות."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11804,13 +11815,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "מאפשר יצירת טבלאות זמניות."
#: po/advisory_rules.php:113
#, php-format
@@ -11842,7 +11855,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11861,7 +11874,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11884,7 +11897,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11893,7 +11906,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11906,7 +11919,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11915,8 +11928,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11947,10 +11960,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s טבלאות"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11977,8 +11988,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s טבלאות"
#: po/advisory_rules.php:152
msgid ""
@@ -12017,7 +12030,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12038,7 +12051,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12047,7 +12060,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12066,7 +12079,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "יצירת עמוד חדש"
#: po/advisory_rules.php:176
@@ -12085,9 +12098,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "ראיית טבלאות"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "חבילת הקידוד של הקובץ:"
#: po/advisory_rules.php:181
msgid ""
@@ -12109,7 +12122,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "חבילת הקידוד של הקובץ:"
#: po/advisory_rules.php:186
@@ -12151,7 +12164,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "סוג שאילתה"
#: po/advisory_rules.php:201
@@ -12169,8 +12182,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "סוג שאילתה"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12224,9 +12238,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "חיבורים"
#: po/advisory_rules.php:221
@@ -12251,7 +12265,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "חיבורים"
#: po/advisory_rules.php:226
@@ -12274,7 +12288,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "חיבורים"
#: po/advisory_rules.php:231
@@ -12288,8 +12302,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "תוכן עניניים"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12310,7 +12326,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "תוכן עניניים"
#: po/advisory_rules.php:243
@@ -12335,7 +12351,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12442,6 +12458,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "שימוש מקום"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "ראיית טבלאות"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "חיבורים"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "חיבורים"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "שימוש"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "שימוש"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/hi.po b/po/hi.po
index 934c258da1..363a98005c 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-24 19:04+0200\n"
"Last-Translator: \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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "सभी दिखाएँ"
@@ -46,7 +46,7 @@ msgstr "ढूंढें"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "मुख्यनाम"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "वर्णन"
@@ -200,7 +200,7 @@ msgstr "के लिए लिंक"
msgid "Comments"
msgstr "टिप्पणी"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "टिप्पणी"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "नहीं"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "नहीं"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -346,8 +346,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
-"sयहाँ%s पर क्लिक करें."
+"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए "
+"%sयहाँ%s पर क्लिक करें."
#: db_operations.php:584
msgid "Edit or export relational schema"
@@ -355,7 +355,7 @@ msgstr "संबंधपरक स्कीमा को संपादित
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -612,8 +612,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -623,7 +623,7 @@ msgstr "दृश्य"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "प्रतिकृति"
@@ -665,7 +665,7 @@ msgstr "ओवर्हेअद वाली तालुकाओं को
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "निर्यात"
@@ -727,10 +727,10 @@ msgstr "ट्रैक की गयी टेबलएं"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -750,7 +750,7 @@ msgstr "अद्यतन"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "स्थिति"
@@ -848,8 +848,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@@ -892,7 +892,7 @@ msgstr "यह बुकमार्क हटा दिया गया है"
msgid "Showing bookmark"
msgstr "बुकमार्क प्रदर्शित किया जा रहा है."
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "बुकमार्क %s बनाया"
@@ -942,15 +942,15 @@ msgstr "चयन करने के लिए क्लिक करें."
msgid "Click to unselect"
msgstr "रद्द करने के लिए क्लिक करें."
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "क्या आप सचमुच चाहते है की"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
@@ -1027,12 +1027,12 @@ msgstr "प्रिविलेज पुनः लोड करें"
msgid "Removing Selected Users"
msgstr "चयनित यूसर को हटायें"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "बंद"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1040,17 +1040,17 @@ msgstr "बंद"
msgid "Edit"
msgstr "सम्पादन"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "सर्वर चुनिये"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
@@ -1063,13 +1063,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "कुल"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1101,7 +1101,7 @@ msgstr "सर्वर चुनिये"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "प्रक्रियां"
@@ -1121,172 +1121,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "डाटाबेसों के सांख्यिकी"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "विन्यास सहेज नहीं सकते"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "क्वेरी कैश"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "क्वेरी कैश"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "क्वेरी कैश"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total count"
msgid "Total memory"
msgstr "कुल गिनती"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "बफर पूल"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "कुल"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "मुक्त पृष्ठों"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "प्राप्त"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "कनेक्शन"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "संस्करण"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "ट्रैफ़िक"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "सेटिंग्स"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "डेटाबेस को हटा दे"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "ग्रिड पर स्नैप"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "कोई नहीं"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1294,376 +1326,376 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "सक्षम"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "अक्षम"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "सेटिंग्स प्रबंधक"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "अधिक सेटिंग्स"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Default title"
msgid "Chart Title"
msgstr "डिफ़ॉल्ट शीर्षक"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "अंतर"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "डेटाबेस को कूद"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "डाली गयी पक्न्तियों"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "कुल"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "लोड हो रहा है"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "पुनः लोड"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "आयात"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "क्वरी का नवीनीकरण करें"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "डोक्युमेंटेशन"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "विवरण..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "प्रमाणीकरण"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "रद्द"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "लोड हो रहा है"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "याचिका प्रसंस्करण"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "याचिका प्रसंस्करणमें त्रुटि"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "काँलम गिराना"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "प्राथमिक कुंजी जोड़"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ठीक है"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "डेटाबेस का नाम बदल कर ____ रखें"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "डेटाबेस पुनः लोड"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "डेटाबेस को ______ में कॉपी करें"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "वर्ण सेट बदलें"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "नया टेबल बनाऐं"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "टेबल का उपयोग करो"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "अनुक्रमणिका जोड़"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "ग्रिड दिखाओ"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "खोजें"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
msgstr "खोज मापदंड छिपाना"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
msgstr "खोज मापदंड दिखाना"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "ब्राउज़"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "मिटाएँ"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "क्वरी बॉक्स छुपा"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "क्वेरी बॉक्स दिखाएँ"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "कोई चयनित रो नहीं"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "बदलिये"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "अधिकतम निष्पादन समय"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1671,102 +1703,102 @@ msgstr "अधिकतम निष्पादन समय"
msgid "Save"
msgstr "बचाना"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "खोज मापदंड छिपाना"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "खोज मापदंड दिखाना"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "ध्यान न देना"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "नया काँलम जोडें"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "संदर्भित कुंजी का चयन करें."
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "विदेश कुंजी का चयन करें."
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "प्रदर्शित करने के लिए काँलम चयन करें."
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "काँलम के लिए एक विकल्प जोड़ें"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "चयन करने के लिए क्लिक करें."
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "पासव्रड उत्पन्न करें"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "उत्पन्न"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "पासवर्ड बदलिये "
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "अधिक"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1775,29 +1807,29 @@ msgstr ""
"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", नवीनतम स्थिर संस्करण:"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "डेटाबेस को कूद"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "किया"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "पिछला"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1805,149 +1837,149 @@ msgid "Next"
msgstr "अगला"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "आज"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "जनवरी"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "फरवरी"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "मार्च"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "अप्रैल"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "मई"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "जून"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "जुलाई"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "अगस्त"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "सितम्बर"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "अक्तूबर"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "नवम्बर"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "दिसमबर"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "रविवार"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "सोमवार"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "मन्गलवार"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "बुधवार"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "गुरूवार"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "शुक्रवार"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1955,84 +1987,84 @@ msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "हफ्ता"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "घंटा"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "मिनट"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "सेकंड"
@@ -2292,11 +2324,11 @@ msgstr "%s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
-"$s का उपयोग करें."
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
+"%2$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2436,7 +2468,7 @@ msgstr "साझा"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "टेबल"
@@ -2514,7 +2546,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें"
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "सर्वर"
@@ -2563,7 +2595,7 @@ msgid "Documentation"
msgstr "डोक्युमेंटेशन"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL क्वरी"
@@ -2601,7 +2633,7 @@ msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "ताज़ा करना"
@@ -2622,7 +2654,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "इनलाइन"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "रूपरेखा"
@@ -2731,7 +2763,7 @@ msgstr "चयन करने के लिए क्लिक करें."
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5250,8 +5282,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5448,7 +5480,7 @@ msgstr "कुंजी सॉर्ट"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5512,7 +5544,7 @@ msgid "The row has been deleted"
msgstr "रौ को डिलीट कर दिया"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5528,7 +5560,7 @@ msgstr "रौ देखिये"
msgid "total"
msgstr "कुल"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
@@ -5599,7 +5631,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "बफर पूल"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5942,8 +5974,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6050,28 +6082,28 @@ msgid "Display MIME types"
msgstr "फीचरस दिखाओ"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "होस्ट"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "समय पर बनाया"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6272,53 +6304,53 @@ msgid "Generated by"
msgstr "द्वारा उत्पन्न"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ने एक खाली परिणाम सेट लोताया"
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "डेटाबेस पर जायें"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "%s के लिए डेटा लापता"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "टेबल पर जायें"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "केवल संरचना"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "दृश्य पर जायें"
@@ -6768,14 +6800,14 @@ msgid "Slave status"
msgstr "स्लाव की स्थिति"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "स्थिति"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "मूल्य"
@@ -6995,7 +7027,7 @@ msgid "Returns"
msgstr "रिटर्न प्रकार"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "समय"
@@ -7493,12 +7525,12 @@ msgid "Synchronize"
msgstr "सिंक्रनाइज़"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "बाइनरी लोग"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "प्रक्रियां"
@@ -7553,11 +7585,11 @@ msgstr "स्पष्ट"
msgid "Columns"
msgstr "कोलम"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
@@ -7912,7 +7944,7 @@ msgstr "अधिक सेटिंग्स"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "यूसर"
@@ -8356,17 +8388,17 @@ msgstr "फ़ाइल मौजूद नहीं है"
msgid "Select binary log to view"
msgstr "द्विआधारी लॉग देखने के लिए चयनित करें"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "फाइलें"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "पूर्ण क्वरीों को दिखाएँ"
@@ -8752,8 +8784,8 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8878,7 +8910,7 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प
msgid "This server is configured as master in a replication process."
msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है"
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "मास्टर अवस्था"
@@ -9015,136 +9047,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s को सफलता से मारा गया।"
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।"
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "हैंडलर"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "क्वेरी कैश"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "थ्रेअद"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "अस्थायी डेटा"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "देरी आवेषण"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "कुंजी कैश"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "जोड़"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "छँटाई"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "लेन - देन समन्वयक"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "सभी टेबलओं फ्लश"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "खुला टेबल शो"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "फ्लश क्वेरी कैश"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "क्रम जानकारी"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "ताज़ा करना"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "पासवर्ड मत बदलिये"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "खुला टेबल शो"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "खुला टेबल शो"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Replication"
msgid "Related links:"
msgstr "पसंबंधित लिंक"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "क्वरी प्रकार"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Administration"
msgid "Instructions"
msgstr "एडमिनिस्ट्रेशन"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9159,131 +9191,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "स्टार्टअप पेज अनुकूलित करें"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "प्रति घंटे"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "प्रति मिनट"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "प्रति सेकंड"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "रो आँकड़े"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "प्रतिकृति स्थिति"
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "प्राप्त"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "भेजा"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "अधिकतम वर्तमान कनेक्शन"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "असफल प्रयास"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "रद्द"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "आदेश"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया"
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9291,78 +9323,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं"
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9370,7 +9402,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9378,42 +9410,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9421,33 +9453,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9456,227 +9488,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9684,99 +9716,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9784,18 +9816,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9803,66 +9835,66 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "क्षेत्र रोयाँ"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "अनुक्रमणिका जोड़"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "ताज़ा करना"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "मूलभूत मान को बहाल"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9871,7 +9903,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9879,7 +9911,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9891,7 +9923,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "क्वरी प्रकार"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10004,7 +10026,7 @@ msgid_plural "%d seconds"
msgstr[0] "सेकंड"
msgstr[1] "सेकंड"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10413,34 +10435,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "विदेशी मूल्य ब्राउस करें "
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "इनसर्ट रो id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP कोड की तरह दिखाएँ"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL क्वेरी शो"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL मान्य"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "लेबल"
@@ -11216,9 +11238,9 @@ msgid "Current amount of Questions: %s"
msgstr "वर्तमान कनेक्शन"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "SQL प्रशन दिखाएँ"
#: po/advisory_rules.php:16
@@ -11240,7 +11262,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "फ्लश क्वेरी कैश"
#: po/advisory_rules.php:21
@@ -11425,12 +11447,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "स्थान उपयोग"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11487,8 +11503,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11595,9 +11611,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है"
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11615,13 +11631,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है"
#: po/advisory_rules.php:113
#, php-format
@@ -11653,8 +11671,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11674,7 +11694,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11697,7 +11717,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11706,7 +11726,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11719,7 +11739,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11728,8 +11748,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11760,11 +11780,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr " %s टेबलें"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11791,8 +11808,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr " %s टेबलें"
#: po/advisory_rules.php:152
msgid ""
@@ -11833,8 +11853,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "बफर आकार सोर्ट करें"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -11854,8 +11876,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "बफर आकार सोर्ट करें"
#: po/advisory_rules.php:168
#, php-format
@@ -11863,7 +11887,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11883,7 +11907,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "टेबल बनायें"
#: po/advisory_rules.php:176
@@ -11902,10 +11926,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "खुला टेबल शो"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "आयात की गई फ़ाइल का प्रारूप"
#: po/advisory_rules.php:181
msgid ""
@@ -11928,7 +11952,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "आयात की गई फ़ाइल का प्रारूप"
#: po/advisory_rules.php:186
@@ -11971,7 +11995,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "कुंजी कैश"
#: po/advisory_rules.php:201
@@ -11989,8 +12013,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "ट्रैकिंग सक्रिय नहीं है."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12046,10 +12072,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "कनेक्शन"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "के लिए"
#: po/advisory_rules.php:221
msgid ""
@@ -12072,9 +12098,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "कनेक्शन संक्षिप्त करना"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "के लिए"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12096,7 +12122,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "के लिए"
#: po/advisory_rules.php:231
@@ -12110,8 +12136,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "आयात की गई फ़ाइल का प्रारूप"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12132,7 +12160,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "आयात की गई फ़ाइल का प्रारूप"
#: po/advisory_rules.php:243
@@ -12159,8 +12187,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "बफर पूल आकार"
#: po/advisory_rules.php:251
msgid ""
@@ -12270,6 +12300,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "स्थान उपयोग"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "खुला टेबल शो"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "कनेक्शन"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "कनेक्शन संक्षिप्त करना"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "उपयोग"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "उपयोग"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/hr.po b/po/hr.po
index a2c63e7582..2ed2cf6201 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian \n"
+"Language: hr\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"
+"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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Prikaži sve"
@@ -48,7 +48,7 @@ msgstr "Traži"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Naziv ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Opis"
@@ -204,7 +204,7 @@ msgstr "Povezano s"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -215,12 +215,12 @@ msgstr "Komentari"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ne"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -236,7 +236,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -367,7 +367,7 @@ msgstr "Shema relacija"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -640,8 +640,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@@ -652,7 +652,7 @@ msgstr "Prikaz"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikacija"
@@ -694,7 +694,7 @@ msgstr "Provjeri za prepunjene tablice"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
@@ -762,10 +762,10 @@ msgstr "Provjeri tablicu"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -787,7 +787,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Stanje"
@@ -891,11 +891,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
-"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
+"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
+"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -936,7 +936,7 @@ msgstr "Favorit je izbrisan."
msgid "Showing bookmark"
msgstr "Prikazivanje oznake"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Izrađen je favorit %s"
@@ -990,15 +990,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" izjave su onemogućene."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Želite li zaista "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
@@ -1087,12 +1087,12 @@ msgstr "Ponovno učitavanje privilegija"
msgid "Removing Selected Users"
msgstr "Ukloni odabrane korisnike"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1100,17 +1100,17 @@ msgstr ""
msgid "Edit"
msgstr "Uređivanje"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Odabir poslužitelja"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL upit"
@@ -1122,13 +1122,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Ukupno"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1160,7 +1160,7 @@ msgstr "Odabir poslužitelja"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesi"
@@ -1180,172 +1180,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Statistike redova"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Pohrana upita"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Pohrana upita"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Pohrana upita"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "kB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Najveći broj datoteka zapisnika"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Međuspremnik"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Ukupno"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Slobodne stranice"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Primljeno"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Veze"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Perzijski"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Promet"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Opće osobine relacija"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Preimenuj bazu podataka u"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Poravnaj s mrežom"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "bez kompresije"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1353,388 +1385,388 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Onemogućeno"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Opće osobine relacija"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Opće osobine relacija"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Naslov izvještaja"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Nema baza podataka"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Datoteke"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Datoteke"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Broj presloženih redaka."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Ukupno"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokalno"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Osvježi"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Uvoz"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ažuriraj upit"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentacija"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Detalji..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentacija"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Odustani"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokalno"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "U redu "
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Preimenuj bazu podataka u"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Preimenuj bazu podataka u"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopiraj bazu podataka u"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Tablica znakova"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Izradi tablicu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Upotrijebi tablice"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indeksi"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Prikaži mrežu"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Traži"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL upit"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL upit"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Pretraživanje"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Brisanje %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL upit"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL upit"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Promijeni"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1742,110 +1774,110 @@ msgstr ""
msgid "Save"
msgstr "Spremi"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoriraj"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dodaj %s polja"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Odaberite referentni ključ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Odaberite strani ključ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Odaberite primarni ključ ili jedinstveni ključ"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Odaberi polje za prikaz"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generiraj lozinku"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generiraj"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promijeni lozinku"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1853,30 +1885,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Izradi relaciju"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Nema baza podataka"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Podaci"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodni"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1884,96 +1916,96 @@ msgid "Next"
msgstr "Sljedeće"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarno"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Ožu"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Tra"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Svi"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Lip"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Srp"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Kol"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Lis"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1981,78 +2013,78 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Pro"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2060,102 +2092,102 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "u upotrebi"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2421,8 +2453,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@@ -2564,7 +2596,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tablice"
@@ -2650,7 +2682,7 @@ msgstr ""
"konfiguraciju."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Poslužitelj"
@@ -2699,7 +2731,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL upit"
@@ -2737,7 +2769,7 @@ msgid "Create PHP Code"
msgstr "Izradi PHP kod"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Osvježi"
@@ -2760,7 +2792,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Pogoni"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Izrada profila"
@@ -2867,7 +2899,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5479,8 +5511,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@@ -5710,7 +5742,7 @@ msgstr "Presloži po ključu"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5780,7 +5812,7 @@ msgid "The row has been deleted"
msgstr "Redak je izbrisan"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Eliminiraj"
@@ -5796,7 +5828,7 @@ msgstr "Prikazivanje redaka"
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sek"
@@ -5872,7 +5904,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Međuspremnik"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB stanje"
@@ -6270,8 +6302,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6387,28 +6419,28 @@ msgid "Display MIME types"
msgstr "Raspoložive MIME vrste"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Računalo"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Vrijeme generiranja"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Verzija poslužitelja"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP verzija"
@@ -6609,50 +6641,50 @@ msgid "Generated by"
msgstr "Generirano s"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Nema baza podataka"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Nema baza podataka"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Samo strukturu"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7106,14 +7138,14 @@ msgid "Slave status"
msgstr "Prikaži stanje potčinjenog"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Varijabla"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Vrijednost"
@@ -7332,7 +7364,7 @@ msgid "Returns"
msgstr "Vrsta povratka"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Vrijeme"
@@ -7823,12 +7855,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binarni zapisnik"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Varijable"
@@ -7887,11 +7919,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Nazivi stupaca"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Favoriziraj ovaj SQL upit"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Neka svi korisnici imaju pristup ovom favoritu"
@@ -8362,7 +8394,7 @@ msgstr "Verzija protokola"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Korisnik"
@@ -8836,17 +8868,17 @@ msgstr "Tablica \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr "Odaberite binarni zapisnik za prikaz"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Sreži prikazane rezultate"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Prikaži pune upite"
@@ -9243,8 +9275,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
@@ -9376,7 +9408,7 @@ msgstr "Privilegije su uspješno učitane."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Prikaži stanje potčinjenog"
@@ -9517,136 +9549,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Grana %s uspješno je prekinuta."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Hvatišta"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Pohrana upita"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Grane"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Privremeni podaci"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Odgođena umetanja"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Pohrana ključeva"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Spojevi"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Preslagivanje"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordinator transakcije"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Isprazni (zatvori) sve tablice"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Prikaži potčinjena računala"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Prikaži stanje potčinjenog"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Isprazni pohranu upita"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Podaci o razini izvršavanja"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Osvježi"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ne mijenjaj lozinku"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vrsta upita"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funkcije"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9661,70 +9693,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "po satu"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "po minuti"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "po sekundi"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Izjave"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9733,47 +9765,47 @@ msgstr ""
"prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti "
"netočne."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "najv. uzastopnih veza"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Neuspjeli pokušaji"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Naredba"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9783,17 +9815,17 @@ msgstr ""
"ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu "
"datoteku za pohranjivanje izjava transakcija."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9805,11 +9837,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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Koliko je privremenih tablica izradio mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9817,7 +9849,7 @@ msgstr ""
"Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio "
"tijekom izvršavanja izjava."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9825,7 +9857,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:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9833,23 +9865,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Broj redaka zapisanih pomoću INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Broj izvršenih izjava FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Broj internih izjava COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9859,7 +9891,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:1151
+#: server_status.php:1193
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, "
@@ -9869,7 +9901,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:1152
+#: server_status.php:1194
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."
@@ -9877,7 +9909,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:1153
+#: server_status.php:1195
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 "
@@ -9887,7 +9919,7 @@ msgstr ""
"povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako "
"izvodite pretraživanje indeksa."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9895,7 +9927,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:1155
+#: server_status.php:1197
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 "
@@ -9907,7 +9939,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:1156
+#: server_status.php:1198
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 "
@@ -9919,36 +9951,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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Broj internih izjava ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Broj zahtjeva za ažuriranje retka u tablici."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Broj zahtjeva za umetanje retka u tablici."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Broj stranice koje sadrže podatke (dirty ili clean)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Broj stranica koje su trenutno 'dirty'."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Broj slobodnih stranica."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9958,7 +9990,7 @@ msgstr ""
"čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog "
"drugog razloga."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9970,11 +10002,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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Ukupna veličina međuspremnika, u stranicama."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9982,7 +10014,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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9990,11 +10022,11 @@ msgstr ""
"Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se "
"događa kad InnoDB izvodi potpuno pretraživanje tablice."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10002,7 +10034,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:1171
+#: server_status.php:1213
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 "
@@ -10016,55 +10048,55 @@ msgstr ""
"prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno "
"postavljena, ova bi vrijednost trebala biti malenom."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Broj dosadašnjih fsync() operacija."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Trenutan broj fsync() operacija u čekanju."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Trenutan broj čitanja u čekanju."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Trenutan broj zapisivanja u čekanju."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Ukupan broj iščitavanja podataka."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Ukupan broj zapisivanja podataka."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -10073,35 +10105,35 @@ msgstr ""
"međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka "
"rada."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Broj zahtjeva za zapisivanje u zapisnik."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Broj fizičkih zapisivanja u zapisnik."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Zapisivanja u zapisnik na čekanju."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Broj bajtova zapisanih u zapisnik."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Broj izrađenih stranica."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10110,52 +10142,52 @@ msgstr ""
"vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo "
"jednostavno pretvaranje u bajtove."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Broj iščitanih stranica."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Broj zapisanih stranica."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Broj zaključavanja redaka na koje se trenutno čeka."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama."
-#: server_status.php:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama."
-#: server_status.php:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Broj redaka izbrisanih iz InnoDB tablica."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Broj redaka umetnutih u InnoDB tablice."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Broj redaka iščitanih iz InnoDB tablica."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Broj ažuriranih redaka u InnoDB tablicama."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10163,7 +10195,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:1204
+#: server_status.php:1246
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."
@@ -10171,7 +10203,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:1205
+#: server_status.php:1247
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 "
@@ -10181,11 +10213,11 @@ msgstr ""
"gornje razine koja označuje najveći broj blokova koji su ikad bili u "
"istovremenoj upotrebi."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10196,15 +10228,15 @@ msgstr ""
"promašivanja pohrane moguće je izračunati putem naredbi Key_reads/"
"Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10214,17 +10246,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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10232,39 +10264,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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Broj otvorenih datoteka."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Broj otvorenih tablica."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Količina slobodne memorije za pohranu upita."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Broj pronalaženja u pohrani."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Broj upita pridodanih u pohranu."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10277,7 +10309,7 @@ msgstr ""
"nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će "
"upite ukloniti iz pohrane."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10285,19 +10317,19 @@ msgstr ""
"Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog "
"postavke query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Broj upita registriranih u pohrani."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Ukupan broj blokova u pohrani upita."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10305,12 +10337,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10319,7 +10351,7 @@ msgstr ""
"retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite "
"indekse vaših tablica."
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10327,17 +10359,17 @@ msgstr ""
"Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije "
"kritično ako je ovaj iznos velik.)"
-#: server_status.php:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10345,12 +10377,12 @@ msgstr ""
"Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane "
"replikacijske potčinjene SQL grane."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10358,14 +10390,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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10375,23 +10407,23 @@ msgstr ""
"Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti "
"sistemske varijable sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Broj preslagivanja učinjenih pomoću opsega."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Broj presloženih redaka."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Količina trenutno postignutih zaključavanja tablica."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10403,7 +10435,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:1242
+#: server_status.php:1284
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 "
@@ -10413,11 +10445,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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Broj trenutno otvorenih veza."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10429,64 +10461,64 @@ msgstr ""
"(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti "
"primjetna poboljšanja performansi.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Broj grana koje nisu uspavane."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sub"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Dodaj %s polja"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Osvježi"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10495,7 +10527,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10503,7 +10535,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10515,7 +10547,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta upita"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10626,7 +10648,7 @@ msgstr[0] "po sekundi"
msgstr[1] "po sekundi"
msgstr[2] "po sekundi"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11047,36 +11069,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Pretraži strane vrijednosti"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Umetnut ID retka: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Prikazivanje kao PHP koda"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Prikazivanje SQL upita"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Provjera valjanosti SQL-a"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi s indeksima tablice `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Oznaka"
@@ -11872,8 +11894,8 @@ msgid "Current amount of Questions: %s"
msgstr "najv. uzastopnih veza"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Prikaži pune upite"
#: po/advisory_rules.php:16
@@ -11895,7 +11917,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Isprazni pohranu upita"
#: po/advisory_rules.php:21
@@ -12076,12 +12098,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Iskorištenost prostora"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12138,8 +12154,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12248,9 +12264,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Dopušta izradu privremenih tablica."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12268,13 +12284,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Dopušta izradu privremenih tablica."
#: po/advisory_rules.php:113
#, php-format
@@ -12306,8 +12324,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Provjeri tablicu"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12326,7 +12345,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12349,7 +12368,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12358,7 +12377,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12371,7 +12390,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12380,8 +12399,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12412,10 +12431,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tablica"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12442,8 +12459,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tablica"
#: po/advisory_rules.php:152
msgid ""
@@ -12484,8 +12503,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Veličina međuspremnika preslagivanja"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12505,8 +12526,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Veličina međuspremnika preslagivanja"
#: po/advisory_rules.php:168
#, php-format
@@ -12514,7 +12537,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12534,7 +12557,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Izradi tablicu"
#: po/advisory_rules.php:176
@@ -12555,10 +12578,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Prikaži otvorene tablice"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Oblikovanje uvezene datoteke"
#: po/advisory_rules.php:181
msgid ""
@@ -12581,7 +12604,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Oblikovanje uvezene datoteke"
#: po/advisory_rules.php:186
@@ -12628,7 +12651,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Pohrana ključeva"
#: po/advisory_rules.php:201
@@ -12646,8 +12669,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Pohrana ključeva"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12703,10 +12728,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Veze"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "najv. uzastopnih veza"
#: po/advisory_rules.php:221
msgid ""
@@ -12730,7 +12755,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "najv. uzastopnih veza"
#: po/advisory_rules.php:226
@@ -12753,7 +12778,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "najv. uzastopnih veza"
#: po/advisory_rules.php:231
@@ -12767,8 +12792,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Oblikovanje uvezene datoteke"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12789,7 +12816,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Oblikovanje uvezene datoteke"
#: po/advisory_rules.php:243
@@ -12816,8 +12843,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Veličina međuspremnika"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12929,6 +12958,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Iskorištenost prostora"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Prikaži otvorene tablice"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Veze"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "najv. uzastopnih veza"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Upotreba"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Upotreba"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -13192,8 +13245,8 @@ msgstr ""
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
#~ "extension. Please check your PHP configuration."
#~ msgstr ""
-#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
-#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
+#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
+#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ msgid ""
#~ "Couldn't load the iconv or recode extension needed for charset "
diff --git a/po/hu.po b/po/hu.po
index d087b699ce..64238537bd 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: \n"
"Language-Team: hungarian \n"
+"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Összes mutatása"
@@ -47,7 +47,7 @@ msgstr "Keresés"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Kulcsnév"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Leírás"
@@ -201,7 +201,7 @@ msgstr "Hivatkozások:"
msgid "Comments"
msgstr "Megjegyzések"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Megjegyzések"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nem"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Nem"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Kapcsolati séma szerkesztése, exportálása"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -617,11 +617,11 @@ msgstr "Nyomkövetés inaktív."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
-"sdokumentációban%s."
+"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
+"%sdokumentációban%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -630,7 +630,7 @@ msgstr "Nézet"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Többszörözés"
@@ -672,7 +672,7 @@ msgstr "A felülírott táblák kijelölése"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportálás"
@@ -734,10 +734,10 @@ msgstr "Nyomon követett táblák"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -757,7 +757,7 @@ msgstr "frissítve"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Állapot"
@@ -857,11 +857,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
-"sdokumentációban%s a korlátozás feloldása végett."
+"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
+"%sdokumentációban%s a korlátozás feloldása végett."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -903,7 +903,7 @@ msgstr "A könyvjelző törlése megtörtént."
msgid "Showing bookmark"
msgstr "Könyvjelző megjelenítése"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "A(z) %s könyvjelző elkészült"
@@ -956,15 +956,15 @@ msgstr "Kattintson a kijelöléshez."
msgid "Click to unselect"
msgstr "Kattintson a kijelölés megszüntetéséhez."
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "A \"DROP DATABASE\" utasítást letiltották."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Valóban a következőt akarja "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
@@ -1045,12 +1045,12 @@ msgstr "A jogok újratöltése"
msgid "Removing Selected Users"
msgstr "A kijelölt felhasználók törlése"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Bezárás"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1058,17 +1058,17 @@ msgstr "Bezárás"
msgid "Edit"
msgstr "Módosítás"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Szerver választása"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1081,13 +1081,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Összesen"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1119,7 +1119,7 @@ msgstr "Szerver választása"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Folyamatok"
@@ -1139,170 +1139,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Lekérdezések statisztikája"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "A beállítások nem tölthetők be vagy menthetők"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Lekérdezési gyorsítótár"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Lekérdezési gyorsítótár"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Lekérdezési gyorsítótár"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Naplófájlok száma"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Pufferkészlet"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Összesen"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Szabad lapok"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Fogadott"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Kapcsolatok"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Verziók"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Forgalom"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Beállítások"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Adatbázis eltávolítása"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Rácshoz illesztés"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Nincs"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1310,377 +1342,377 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
msgstr "A kimenet mentése fájlként"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Engedélyezett"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Letiltott"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Egyéb alapbeállítások"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "Other core settings"
msgid "Current settings"
msgstr "Egyéb alapbeállítások"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "A jelentés címe"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Adatbázisra ugrás"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Szűrő"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Szűrő"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "A beszúrt sorok száma"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Összesen"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Betöltés"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Újratöltés"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importálás"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Lekérdezés frissítése"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentáció"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Részletek..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Hitelesítés típusa"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Mégse"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Betöltés"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Kérés feldolgozása"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Hiba a kérés feldolgozásában"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Oszlop törlése"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Elsődleges kulcs hozzáadása"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Adatbázis(ok) átnevezése"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Adatbázis újratöltése"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Adatbázis másolása"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Karakterkészlet változtatása"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia."
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Tábla létrehozása"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Felhasználandó táblák"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "Index hozzáadása"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Rács megjelenítése"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Keresés"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
msgstr "Keresési kritériumok elrejtése"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
msgstr "Keresési kritériumok mutatása"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Tartalom"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s törlése"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "SQL-lekérdezési panelek elrejtése"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "SQL-lekérdezési panelek mutatása"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nem jelölte ki a sort"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Módosítás"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Végrehajtási idő legfeljebb"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1688,42 +1720,42 @@ msgstr "Végrehajtási idő legfeljebb"
msgid "Save"
msgstr "Mentés"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Keresési kritériumok elrejtése"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Keresési kritériumok mutatása"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Kihagyás"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Oszlop hozzáadása"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Válassza ki a hivatkozott kulcsot"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Idegen kulcs kiválasztása"
-#: js/messages.php:263
+#: js/messages.php:270
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:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Válassza ki a megjelenítendő oszlopot"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1731,61 +1763,61 @@ 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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Adjon meg egy opciót az oszlophoz"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Kattintson a kijelöléshez."
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Jelszó generálása"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generálás"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Jelszó megváltoztatása"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Több"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1795,27 +1827,27 @@ msgstr ""
"%s, kiadás dátuma: %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", utolsó stabil verzió:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "friss"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Kész"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Előző"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1823,149 +1855,149 @@ msgid "Next"
msgstr "Következő"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Ma"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Január"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Február"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Március"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Április"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Május"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Június"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Július"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Augusztus"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Szeptember"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Október"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "November"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec."
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Vasárnap"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Hétfő"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Kedd"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Szerda"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Csütörtök"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Péntek"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Szombat"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1973,84 +2005,84 @@ msgid "Sun"
msgstr "V"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "H"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "K"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Cs"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Szo"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "V"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "H"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "K"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Sze"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Cs"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Szo"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Hét"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Óra"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Perc"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "másodperc"
@@ -2315,11 +2347,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
-"$stelepítőszkripttel%2$s el tudja készíteni."
+"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
+"%1$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2462,7 +2494,7 @@ msgstr "megosztott"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Táblák"
@@ -2542,7 +2574,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Szerver"
@@ -2591,7 +2623,7 @@ msgid "Documentation"
msgstr "Dokumentáció"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-lekérdezés"
@@ -2629,7 +2661,7 @@ msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Frissítés"
@@ -2650,7 +2682,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Belső"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Adatgyűjtés"
@@ -2759,7 +2791,7 @@ msgstr "Kattintson a kijelöléshez."
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5428,8 +5460,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
@@ -5647,7 +5679,7 @@ msgstr "Kulcs szerinti rendezés"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5717,7 +5749,7 @@ msgid "The row has been deleted"
msgstr "A sor törlése megtörtént"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Leállít"
@@ -5733,7 +5765,7 @@ msgstr "Megjelenített sorok:"
msgid "total"
msgstr "összesen"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "a lekérdezés %01.4f másodpercig tartott"
@@ -5809,7 +5841,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pufferkészlet"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB állapota"
@@ -6206,8 +6238,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6326,28 +6358,28 @@ msgid "Display MIME types"
msgstr "Létező MIME-típusok"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Hoszt"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Létrehozás ideje"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Szerver verzió"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP verzió"
@@ -6550,50 +6582,50 @@ msgid "Generated by"
msgstr "Készítette"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Nincs adatbázis"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "%s adatai hiányoznak"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Csak a szerkezet"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7052,14 +7084,14 @@ msgid "Slave status"
msgstr "Másodlagos állapot"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Változó"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Érték"
@@ -7282,7 +7314,7 @@ msgid "Returns"
msgstr "Típus visszaadása"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Idő"
@@ -7781,12 +7813,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Bináris napló"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Változók"
@@ -7843,11 +7875,11 @@ msgstr "Törlés"
msgid "Columns"
msgstr "Oszlopnevek"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
@@ -7951,8 +7983,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
-"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
+"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
+"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
@@ -8331,7 +8363,7 @@ msgstr "Protokoll verzió"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Felhasználó"
@@ -8825,17 +8857,17 @@ 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:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Fájlok"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "A megjelenített lekérdezések lerövidítése"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Teljes lekérdezések megjelenítése"
@@ -9236,13 +9268,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
-"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
-"stöltse be újra a jogokat%s a folytatás előtt."
+"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
+"%stöltse be újra a jogokat%s a folytatás előtt."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -9369,7 +9401,7 @@ msgstr "A jogok újratöltése sikerült."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Kisegítő állapot megjelenítése"
@@ -9511,12 +9543,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Sikerült leállítani a(z) %s. szálat."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9524,124 +9556,124 @@ 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Kezelő"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Lekérdezési gyorsítótár"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Szálak"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Ideiglenes adatok"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Késleltetett beszúrások"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Kulcs gyorsítótár"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Illesztések"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Rendezés"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Tranzakció koordinátor"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Összes tábla kiírása (bezárása)"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Kisegítő állomások megjelenítése"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Kisegítő állapot megjelenítése"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Lekérdezési gyorsítótár kiírása"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Futtatási információk"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Frissítés"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nincs jelszó megváltoztatás"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Kapcsolatok"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Lekérdezés típusa"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Információ"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9656,60 +9688,60 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "A kezdőlap testreszabása"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "óránként"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "percenként"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "másodpercenként"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Utasítások"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -9723,11 +9755,11 @@ msgstr ""
"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:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Többszörözéses állapot"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9735,47 +9767,47 @@ msgstr ""
"Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által "
"jelentett statisztikák pontatlanok lehetnek."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Fogadott"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Küldött"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Max. egyidejű kapcsolatok száma"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Sikertelen próbák"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Megszakítva"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "AZ"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Parancs"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9785,17 +9817,17 @@ 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:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9807,11 +9839,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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9819,7 +9851,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:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9827,7 +9859,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:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9835,23 +9867,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "A beírt INSERT DELAYED sorok száma."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "A végrehajtott FLUSH utasítások száma."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "A belső COMMIT utasítások száma."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9861,7 +9893,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:1151
+#: server_status.php:1193
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, "
@@ -9872,7 +9904,7 @@ msgstr ""
"például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül "
"indexelésre."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9880,7 +9912,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:1153
+#: server_status.php:1195
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 "
@@ -9890,7 +9922,7 @@ msgstr ""
"ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot "
"végez."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9898,7 +9930,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:1155
+#: server_status.php:1197
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 "
@@ -9910,7 +9942,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:1156
+#: server_status.php:1198
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 "
@@ -9922,35 +9954,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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "A belső ROLLBACK utasítások száma."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "A jelenleg piszkos lapok száma."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "A szabad lapok száma."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9960,7 +9992,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:1165
+#: server_status.php:1207
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 "
@@ -9973,11 +10005,11 @@ msgstr ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is "
"számolható."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "A pufferkészlet teljes mérete lapokban."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9986,7 +10018,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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9994,11 +10026,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:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10006,7 +10038,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:1171
+#: server_status.php:1213
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 "
@@ -10021,53 +10053,53 @@ msgstr ""
"méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell "
"lennie."
-#: server_status.php:1172
+#: server_status.php:1214
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:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Az fsync() műveletek eddigi száma."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "A folyamatban lévő fsync() műveletek száma."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "A folyamatban lévő olvasások száma."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "A folyamatban lévő írások száma."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Az eddig beolvasott adatok mennyisége bájtban."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Az összes beolvasott adat."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Az összes írott adat."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Az összes írott adat, bájtban."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -10075,35 +10107,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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "A naplóírási kérések száma."
-#: server_status.php:1185
+#: server_status.php:1227
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:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "A naplófájlba történt fsyncs írások száma."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "A folyamatban lévő naplófájl fsync-ek száma."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "A folyamatban lévő naplófájl írások száma."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "A naplófájlba írt bájtok száma."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "A létrehozott lapok száma."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10112,51 +10144,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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "A beolvasott lapok száma."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Az írott lapok száma."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "A sorzárolásokra fordított összes idő, milliszekundumban."
-#: server_status.php:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
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:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Az InnoDB táblákba beszúrt sorok száma."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Az InnoDB táblákból beolvasott sorok száma."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Az InnoDB táblákban frissített sorok száma."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10164,7 +10196,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:1204
+#: server_status.php:1246
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."
@@ -10172,7 +10204,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:1205
+#: server_status.php:1247
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 "
@@ -10181,11 +10213,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10196,15 +10228,15 @@ msgstr ""
"sikertelen találatainak aránya a Key_reads/Key_read_requests alapján "
"számítható ki."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10215,17 +10247,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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10233,40 +10265,40 @@ msgstr ""
"Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor "
"valószínűleg túl kicsi a táblagyorsítótár értéke."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "A megnyitott fájlok száma."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "A megnyitott táblák száma."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
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:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "A gyorsítótár találatok száma."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "A gyorsítótárhoz adott lekérdezések száma."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10279,7 +10311,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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10287,19 +10319,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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "A gyorsítótárban bejegyzett lekérdezések száma."
-#: server_status.php:1224
+#: server_status.php:1266
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:1225
+#: server_status.php:1267
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:1226
+#: server_status.php:1268
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."
@@ -10307,11 +10339,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10320,7 +10352,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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10328,15 +10360,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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10344,11 +10376,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:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10356,14 +10388,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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10373,23 +10405,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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "A tartományokkal végzett rendezések száma."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Rendezett sorok száma."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10401,7 +10433,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:1242
+#: server_status.php:1284
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 "
@@ -10411,11 +10443,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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "A jelenleg megnyitott kapcsolatok száma."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10426,67 +10458,67 @@ 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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "A nem alvó szálak száma."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Indítás"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "Index hozzáadása"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Frissítés"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Szövegterület oszlopai"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Alapértelmezett érték visszaállítása"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "Információ"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10495,7 +10527,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10503,7 +10535,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10515,7 +10547,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Lekérdezés típusa"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10628,7 +10650,7 @@ msgid_plural "%d seconds"
msgstr[0] "másodperc"
msgstr[1] "másodperc"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11076,9 +11098,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11152,34 +11174,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Az idegen kulcsok böngészése"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "A beszúrt sor azonosítószáma: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Megjelenítés PHP kódként"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Megjelenítés SQL lekérdezésként"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Érvényes SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probléma a(z) `%s` tábla indexeivel"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Név"
@@ -11955,9 +11977,9 @@ msgid "Current amount of Questions: %s"
msgstr "Jelenlegi kapcsolat"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Az SQL-lekérdezések megjelenítése"
#: po/advisory_rules.php:16
@@ -11979,7 +12001,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Lekérdezési gyorsítótár kiírása"
#: po/advisory_rules.php:21
@@ -12164,12 +12186,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Területhasználat"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12226,8 +12242,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12336,9 +12352,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Engedélyezi ideiglenes táblák készítését."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12356,13 +12372,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Engedélyezi ideiglenes táblák készítését."
#: po/advisory_rules.php:113
#, php-format
@@ -12394,8 +12412,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "Nincsenek feltöltendő fájlok"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12415,7 +12435,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12438,7 +12458,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12447,7 +12467,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12460,7 +12480,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12469,8 +12489,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12501,11 +12521,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tábla"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12532,8 +12549,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tábla"
#: po/advisory_rules.php:152
msgid ""
@@ -12574,8 +12594,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Rendezőpuffer mérete"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12595,8 +12617,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Rendezőpuffer mérete"
#: po/advisory_rules.php:168
#, php-format
@@ -12604,7 +12628,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12624,7 +12648,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Tábla létrehozása"
#: po/advisory_rules.php:176
@@ -12645,10 +12669,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Nyitott táblák megjelenítése"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Az importált fájl formátuma"
#: po/advisory_rules.php:181
msgid ""
@@ -12671,7 +12695,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Az importált fájl formátuma"
#: po/advisory_rules.php:186
@@ -12718,7 +12742,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Kulcs gyorsítótár"
#: po/advisory_rules.php:201
@@ -12736,8 +12760,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Nyomkövetés inaktív."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12795,10 +12821,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Kapcsolatok"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Állandó kapcsolatok"
#: po/advisory_rules.php:221
msgid ""
@@ -12821,9 +12847,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "A kapcsolat tömörítése"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Állandó kapcsolatok"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12845,7 +12871,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Állandó kapcsolatok"
#: po/advisory_rules.php:231
@@ -12859,8 +12885,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Az importált fájl formátuma"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12881,7 +12909,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Az importált fájl formátuma"
#: po/advisory_rules.php:243
@@ -12908,8 +12936,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Pufferkészlet mérete"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13021,6 +13051,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Területhasználat"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Nyitott táblák megjelenítése"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Kapcsolatok"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "A kapcsolat tömörítése"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Méret"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Méret"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
@@ -13060,8 +13114,8 @@ msgstr ""
#~ "No themes support; please check your configuration and/or your themes in "
#~ "directory %s."
#~ msgstr ""
-#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %"
-#~ "s könyvtárban."
+#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) "
+#~ "%s könyvtárban."
#~ msgid "Switch to"
#~ msgstr "Váltás"
diff --git a/po/id.po b/po/id.po
index 4ec956bd7b..dfe9fee1e5 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
+"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Tampilkan semua"
@@ -47,7 +47,7 @@ msgstr "Cari"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Nama Kunci"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Deskripsi"
@@ -201,7 +201,7 @@ msgstr "Link ke"
msgid "Comments"
msgstr "Komentar"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Komentar"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Tidak"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Edit atau ekspor skema relasional"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -614,11 +614,11 @@ msgstr "Pelacakan tidak aktif."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
-"sdokumentasi%s"
+"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
+"%sdokumentasi%s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -627,7 +627,7 @@ msgstr "Gambarkan"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Tiruan"
@@ -669,7 +669,7 @@ msgstr "Periksa Overheaded"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspor"
@@ -735,10 +735,10 @@ msgstr "Tabel-tabel yang dilacak"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -758,7 +758,7 @@ msgstr "Diperbarui"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -857,11 +857,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
-"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
+"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
+"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -901,7 +901,7 @@ msgstr "Penyimpanan telah dihapus."
msgid "Showing bookmark"
msgstr "Tampilkan bookmark"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark % s dibuat"
@@ -955,15 +955,15 @@ msgstr "Klik untuk memilih"
msgid "Click to unselect"
msgstr "Klik untuk batal memilih"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Perintah \"HAPUS DATABASE\" dimatikan."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Apakah anda ingin "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Anda akan MENGHAPUS SELURUH database!"
@@ -1041,12 +1041,12 @@ msgstr "Reload Hak Istimewa (Privileges)"
msgid "Removing Selected Users"
msgstr "Hapus pengguna yang dipilih"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Tutup"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1054,17 +1054,17 @@ msgstr "Tutup"
msgid "Edit"
msgstr "Ubah"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Pilihan Server"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Live conn./process chart"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Perintah SQL"
@@ -1075,13 +1075,13 @@ msgstr "Data statis"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Jumlah"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Lainnya"
@@ -1111,7 +1111,7 @@ msgstr "Lalulintas Server (dalam KiB)"
msgid "Connections since last refresh"
msgstr "Koneksi sejak dibuka terakhir"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Proses Aktif"
@@ -1131,170 +1131,199 @@ msgstr "Koneksi sejak dibuka terakhir"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Statistik query"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Tipe Pencarian"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Tipe Pencarian"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Tipe Pencarian"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total count"
msgid "Total memory"
msgstr "Jumlah"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Penampungan Buffer"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Jumlah"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Halaman yang bebas"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Penerimaan"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Koneksi"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versi"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Lalu-Lintas"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Ciri-ciri dari General Relation"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Hapus database"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "tanpa"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1302,369 +1331,369 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "Kirimkan ke"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Aktif"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Tidak aktif"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Ciri-ciri dari General Relation"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Ciri-ciri dari General Relation"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Impor file"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Perbedaan"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Beralih ke database"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Jumlah baris per halaman"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Jumlah"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Memproses"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload Database"
msgid "Reload page"
msgstr "Muat ulang basis data"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Ekspor"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Update proses pencarian"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentasi"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Rincian..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentasi"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Batal"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Memproses"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Memproses permintaan"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Error dalam memproses permintaan"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Menghapus Kolom"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Tambahkan Primary Key"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Oke"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Ubah nama database"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Muat ulang basis data"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Salin database"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Perangkat karakter (Charset)"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabel harus mengandung sekurangnya satu kolom"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Buat tabel"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Sisipkan Tabel"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indeks"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Tampilkan garis"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Pencarian"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Sembunyikan hasil pencarian"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Tampilkan hasil pencarian"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Menjelajahi"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Menghapus %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Sembunyikan kotak query"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Tampilkan kotak query"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Tidak ada baris yang dipilih"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Ubah"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "SQL execution"
msgid "Query execution time"
msgstr "Menjalankan SQL"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1672,42 +1701,42 @@ msgstr "Menjalankan SQL"
msgid "Save"
msgstr "Simpan"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Sembunyikan kriteria pencarian"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Tampilkan kriteria pencarian"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Abaikan"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Tambah kolom"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Pilih kunci rujukan"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Pilih Foreign Key"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Silakan pilih primary key atau sebuah unique key"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pilih kolom untuk ditampilkan"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1715,61 +1744,61 @@ msgstr ""
"Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda "
"tidak menyimpannya. Apakah Anda ingin melanjutkan?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Tambahkan pilihan untuk kolom"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Klik untuk memilih"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Menghasilkan kata sandi"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Menghasilkan"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Ubah Kata Sandi"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Selebihnya"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1779,27 +1808,27 @@ msgstr ""
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", versi stabil terakhir:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "Mutakhir"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Selesai"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Sebelumnya"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1807,149 +1836,149 @@ msgid "Next"
msgstr "Berikutnya"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Hari ini"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Januari"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Februari"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Maret"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "April"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mei"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Juni"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Juli"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Agustus"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "September"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "November"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Januari"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Februari"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Maret"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Agustus"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nopember"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Desember"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Minggu"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Senin"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Selasa"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Rabu"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Kamis"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Jumat"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sabtu"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1957,84 +1986,84 @@ msgid "Sun"
msgstr "Minggu"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Senin"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Selasa"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Rabu"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Kamis"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Jumat"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sabtu"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Minggu"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Senin"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Selasa"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Rabu"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Kamis"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Jumat"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Sabtu"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Mingguan"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Jam"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Menit"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Detik"
@@ -2294,8 +2323,8 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
"script%2$s untuk membuatnya."
@@ -2441,7 +2470,7 @@ msgstr "dibagi"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabel"
@@ -2520,7 +2549,7 @@ msgstr ""
"Hostname tidak sah untuk server %1$s. Silakan lihat kembali konfigurasi Anda."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2569,7 +2598,7 @@ msgid "Documentation"
msgstr "Dokumentasi"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Pencarian SQL"
@@ -2607,7 +2636,7 @@ msgid "Create PHP Code"
msgstr "Ciptakan kode PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Menyegarkan"
@@ -2628,7 +2657,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profiling"
@@ -2735,7 +2764,7 @@ msgstr "Klik untuk memilih"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5317,8 +5346,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5529,7 +5558,7 @@ msgstr "Urut berdasarkan kunci"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5601,7 +5630,7 @@ msgid "The row has been deleted"
msgstr "Baris telah dihapus"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Tutup"
@@ -5617,7 +5646,7 @@ msgstr "Tampilan baris"
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "pencarian membutuhkan waktu %01.4f detik"
@@ -5693,7 +5722,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Penampungan Buffer"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Status dari InnoDB"
@@ -6054,8 +6083,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6175,28 +6204,28 @@ msgid "Display MIME types"
msgstr "Tipe MIME yang tersedia"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Waktu pembuatan"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versi Server"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versi PHP"
@@ -6401,50 +6430,50 @@ msgid "Generated by"
msgstr "Diciptakan oleh"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Database tidak ditemukan"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Data hilang untuk %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Struktur saja"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6900,14 +6929,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Nilai"
@@ -7124,7 +7153,7 @@ msgid "Returns"
msgstr "Pilihan untuk tabel"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Jangka Waktu"
@@ -7613,12 +7642,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Log binari"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variabel"
@@ -7674,11 +7703,11 @@ msgstr "Kalender"
msgid "Columns"
msgstr "Nama kolom"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Simpan pencarian SQL ini"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
@@ -8134,7 +8163,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Pengguna"
@@ -8604,18 +8633,18 @@ msgstr "Tabel \"%s\" tidak ditemukan!"
msgid "Select binary log to view"
msgstr "Pilih Log binari untuk ditinjau"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Field"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Potongkan pencarian yang ditampilkan"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Tampilkan pencarian yang lengkap"
@@ -9021,8 +9050,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "
@@ -9155,7 +9184,7 @@ msgstr "Sukses reload Hak Istimewa (Privileges)."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9294,12 +9323,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Sukses hentikan Thread %s."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9307,125 +9336,125 @@ msgstr ""
"phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah "
"ditutup terlebih dahulu"
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Tipe Pencarian"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Gunakan perintah INSERT memperlambat"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordinator transaksi"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Tampilkan tabel"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informasi Runtime"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Menyegarkan"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Jangan ubah Kata Sandi"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Tampilkan tabel"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Tampilkan tabel"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Tabel Relasi"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipe Pencarian"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Fungsi"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9440,39 +9469,39 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "dalam sejam"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per menit"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per detik"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Keterangan"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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."
@@ -9480,94 +9509,94 @@ msgstr ""
"MySQL server ini telah berjalan secara berturut-turut selama %s. Server "
"dijalankan pada tanggal %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Penerimaan"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Pengiriman"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Gagal"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Pembatalan"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Perintah"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam "
"batas waktu satu jam."
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9575,78 +9604,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9654,7 +9683,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9662,42 +9691,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9705,33 +9734,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9740,227 +9769,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9968,99 +9997,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10068,18 +10097,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10087,65 +10116,65 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
msgid "Start Monitor"
msgstr "Status"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add column"
msgid "Add chart"
msgstr "Tambah kolom"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Menyegarkan"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "Tambahkan/Hapus kolom"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Kembalikan nilai default"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10154,7 +10183,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10162,7 +10191,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10174,7 +10203,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10335,75 +10367,69 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "Utilizzo della CPU"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Rimuovi il diagramma"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Utilizzo della memoria"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Utilizzo dello swap"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Variabili di stato"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Seleziona serie:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Monitorate di solito"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "or scrivi il nome di una variabile:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Visualizzare come valore differenziale"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Applica un divisore"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Aggiungi un unitá ai valori dei dati"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Aggiungi questa serie"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Cancella la serie"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Serie del grafico:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Registra statistiche"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Intervallo di tempo selezionato:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10411,20 +10437,20 @@ msgstr ""
"
Scegli il log dal quale generare le statistiche.
I risultati verranno "
"raggruppati secondo il testo di query."
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipo di query"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d secondo"
msgstr[1] "%d secondi"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10830,10 +10856,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
-"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
-"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
-"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
+"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
+"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
+"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
+"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
#: setup/lib/index.lib.php:292
@@ -10848,8 +10874,8 @@ msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
-"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
-"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
+"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:294
#, php-format
@@ -10895,34 +10921,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Naviga tra i valori esterni"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Inserita riga id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Mostrando il codice PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Mostrando la query SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL Validato"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi con gli indici della tabella `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etichetta"
@@ -11674,9 +11700,9 @@ msgid "Current amount of Questions: %s"
msgstr "Connessione corrente"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Mostra query SQL"
#: po/advisory_rules.php:16
@@ -11698,7 +11724,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Rinfresca la cache delle query"
#: po/advisory_rules.php:21
@@ -11886,12 +11912,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Spazio utilizzato"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11948,8 +11968,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12058,9 +12078,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permette di creare tabelle temporanee."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12078,13 +12098,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permette di creare tabelle temporanee."
#: po/advisory_rules.php:113
#, php-format
@@ -12116,8 +12138,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Non ci sono routine da visualizzare."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12137,7 +12161,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12160,7 +12184,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12169,7 +12193,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12182,8 +12206,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12193,8 +12219,8 @@ msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12226,10 +12252,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabella"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12256,8 +12281,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabella"
#: po/advisory_rules.php:152
msgid ""
@@ -12298,8 +12326,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Ordina la dimensione del buffer"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12319,8 +12349,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Ordina la dimensione del buffer"
#: po/advisory_rules.php:168
#, php-format
@@ -12328,7 +12360,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12348,7 +12380,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Crea tabelle"
#: po/advisory_rules.php:176
@@ -12369,10 +12401,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Mostra le tabelle aperte"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formato del file importato"
#: po/advisory_rules.php:181
msgid ""
@@ -12395,7 +12427,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formato del file importato"
#: po/advisory_rules.php:186
@@ -12442,7 +12474,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Key cache"
#: po/advisory_rules.php:201
@@ -12460,8 +12492,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Il tracking non è attivo."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12520,10 +12554,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time é impostato a %d secondi."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Connessioni"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Connessione persistente"
#: po/advisory_rules.php:221
msgid ""
@@ -12546,9 +12580,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Comprimi la connessione"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Connessione persistente"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12570,7 +12604,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Connessione persistente"
#: po/advisory_rules.php:231
@@ -12584,8 +12618,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formato del file importato"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12606,7 +12642,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formato del file importato"
#: po/advisory_rules.php:243
@@ -12633,8 +12669,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Dimensione del buffer per pool"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12746,6 +12784,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Spazio utilizzato"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Mostra le tabelle aperte"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Connessioni"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Comprimi la connessione"
+
+#~ msgid "CPU Usage"
+#~ msgstr "Utilizzo della CPU"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Utilizzo della memoria"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Utilizzo dello swap"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/ja.po b/po/ja.po
index db847cc229..a8b7330b24 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
-"PO-Revision-Date: 2011-08-06 12:16+0200\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
+"PO-Revision-Date: 2011-08-12 12:25+0200\n"
"Last-Translator: Yuichiro \n"
"Language-Team: japanese \n"
+"Language: ja\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "すべて表示"
@@ -47,7 +47,7 @@ msgstr "検索"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "キー名"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "説明"
@@ -201,7 +201,7 @@ msgstr "リンク先"
msgid "Comments"
msgstr "コメント"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "コメント"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "いいえ"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "いいえ"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -609,8 +609,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -620,7 +620,7 @@ msgstr "ビュー"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "レプリケーション"
@@ -662,7 +662,7 @@ msgstr "オーバーヘッドのあるテーブルを確認する"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "エクスポート"
@@ -724,10 +724,10 @@ msgstr "SQL コマンドを追跡しているテーブル"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -747,7 +747,7 @@ msgstr "更新日時"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "状態"
@@ -848,8 +848,8 @@ msgstr "ダンプをファイル %s に保存しました"
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください"
@@ -894,7 +894,7 @@ msgstr "ブックマークを削除しました"
msgid "Showing bookmark"
msgstr "表示中のブックマーク"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "ブックマーク %s を作成しました"
@@ -945,15 +945,15 @@ msgstr "クリックで選択"
msgid "Click to unselect"
msgstr "クリックで選択解除"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "DROP DATABASE 文は無効にされています"
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "本当に実行しますか?"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "データベースを完全に削除しようとしています!"
@@ -1030,12 +1030,12 @@ msgstr "特権を再読み込み"
msgid "Removing Selected Users"
msgstr "選択したユーザを削除する"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "閉じる"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1043,15 +1043,15 @@ msgstr "閉じる"
msgid "Edit"
msgstr "編集"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "リアルタイムでのトラフィックグラフ"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "リアルタイムでの接続/プロセスグラフ"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "リアルタイムでのクエリグラフ"
@@ -1062,13 +1062,13 @@ msgstr "統計データ"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "合計"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "その他"
@@ -1098,7 +1098,7 @@ msgstr "サーバのトラフィック (単位:KiB)"
msgid "Connections since last refresh"
msgstr "更新間隔中の接続数"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "プロセス"
@@ -1116,154 +1116,186 @@ msgstr "更新間隔中の問い合わせ数"
msgid "Questions (executed statements by the server)"
msgstr "問い合わせ数(サーバで実行された命令文)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "クエリの統計"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "設定ファイルの読み込みに失敗しました"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "クエリキャッシュ"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "クエリキャッシュ"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "クエリキャッシュ"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "システム CPU の使用状況"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "システムメモリ"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "システムスワップ"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "平均負荷"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "総メモリ"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "キャッシュ割り当てメモリ"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "バッファ割り当てメモリ"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "空きメモリ"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "使用中メモリ"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "総スワップ領域"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "キャッシュ割り当てスワップ領域"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "使用中スワップ領域"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "空きスワップ領域"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "送信"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "受信"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "接続"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "問い合わせ"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "トラフィック"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "設定"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "グラフの削除"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "モニタリンググラフを追加する"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "少なくとも1つの系列を追加してください"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "なし"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "モニタ再開"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "モニタ一時中断"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log および slow_query_log は有効です。"
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log は有効です。"
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log は有効です。"
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log および general_log は無効です。"
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output はテーブルに設定されていません。"
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output はテーブルに設定されています。"
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1274,12 +1306,12 @@ msgstr ""
"をログに記録します。お使いのシステムによっては、long_query_time を 0~2 秒に"
"設定したほうがいいでしょう。"
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr "long_query_time は %d 秒に設定されています。"
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1288,30 +1320,30 @@ msgstr ""
"されます。"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, php-format
msgid "Set log_output to %s"
msgstr "%s に log_output を設定する"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "%s を有効にする"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "%s を無効にする"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "long_query_time を %d 秒に設定する"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1319,43 +1351,43 @@ msgstr ""
"これらの変数を変更することはできません。root でログインするか、データベース管"
"理者に連絡してください。"
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "設定の変更"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "現在の設定"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "グラフの題名"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "差分"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "ログの解析および読み込み中。すこし時間がかかることがあります。"
-#: js/messages.php:158
+#: js/messages.php:165
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 "
@@ -1365,7 +1397,7 @@ msgstr ""
"クエリをグループの基準として使用しています。そのため、開始時刻いったような属"
"性は、他クエリでは異なる場合があります。"
-#: js/messages.php:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1375,259 +1407,259 @@ msgstr ""
"INSERT クエリは挿入されたデータ部は同一のようにみなされて、グループ化が行われ"
"ます。"
-#: js/messages.php:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr "ログデータを読み込みました。この期間に行われたクエリは以下の通りです。"
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "ログの表に移動する"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr "ログの解析を行いましたが、この期間のデータは見つかりませんでした。"
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "フィルタ"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "フィルタ"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "単語/正規表現でクエリをフィルタ:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
"WHERE 句内のデータ部(文字列や数値など)は同一として扱いクエリをまとめる"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "グループ後の件数:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "合計:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "ログの読み込み"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "モニタの再描画に失敗しました"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "再読み込み"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "インポート"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "クエリを更新する"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor system"
msgstr "除数を適用する"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "ドキュメント"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "詳細"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "認証"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "キャンセル"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "読み込み中"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "要求を処理中"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "要求処理中でのエラー"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "カラムを削除中"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "主キーの追加中"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "データベースのリネーム中"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "データベースの再読み込み中"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "データベースをコピー中"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "文字セットの変更中"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "テーブルには最低 1 つのカラムが必要です"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "テーブルを作成"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "テーブルを挿入する"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "インデックスを隠す"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "インデックスを表示する"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "検索中"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "検索結果を隠す"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "検索結果を表示する"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "表示中"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "削除中"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!"
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
"注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま"
"す。"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "クエリボックスを隠す"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "クエリボックスを表示"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "行が選択されていません"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "変更"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "最大実行時間"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1635,40 +1667,40 @@ msgstr "最大実行時間"
msgid "Save"
msgstr "保存する"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "検索条件を隠す"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "検索条件を表示する"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "無視"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "カラムを追加する"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "参照されているキーを選択"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "外部キーを選択してください"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "主キーまたはユニークキーを選択してください"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "表示するカラムの選択"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1676,59 +1708,59 @@ msgstr ""
"レイアウトの変更を保存されていません。保存していない場合、それらは失われま"
"す。このまま続けてもよろしいですか?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "カラムに対するオプションを追加する"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "ドラッグでカラムの入れ替え"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "クリックでソート"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "クリックでカラムを反転/解除"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "パスワードを生成する"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "生成する"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "パスワードを変更する"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "その他"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1738,262 +1770,255 @@ msgstr ""
"します。最新バージョンは %s で、%s にリリースされています。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", 最終安定バージョン:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "最新版"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "決定"
-#: js/messages.php:315
-#, fuzzy
-#| msgid "Prev"
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
-msgstr "前へ"
+msgstr "前月"
-#: js/messages.php:320
-#, fuzzy
-#| msgid "Next"
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
-msgstr "次へ"
+msgstr "翌月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "今日"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "1 月"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "2 月"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "3 月"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "4 月"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "5 月"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "6 月"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "7 月"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "8 月"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "9 月"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "10 月"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "11 月"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "12 月"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "1 月"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "2 月"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "3 月"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "4 月"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "5 月"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "6 月"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "12 月"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "日"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "月"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "火"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "水"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "木"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "金"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "土"
#. l10n: Short week day name
-#: js/messages.php:376
-#, fuzzy
-#| msgctxt "Short week day name"
-#| msgid "Sun"
+#: js/messages.php:383
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "土"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "月"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "火"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "水"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "木"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "金"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "土"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "週"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "時"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "分"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "秒"
@@ -2248,11 +2273,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
-"$s を利用して設定ファイルを作成してください"
+"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
+"ト%2$s を利用して設定ファイルを作成してください"
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2391,7 +2416,7 @@ msgstr "共有"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "テーブル"
@@ -2470,7 +2495,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください"
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "サーバ"
@@ -2519,7 +2544,7 @@ msgid "Documentation"
msgstr "ドキュメント"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "実行した SQL"
@@ -2557,7 +2582,7 @@ msgid "Create PHP Code"
msgstr "PHP コードの作成"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "再描画"
@@ -2578,7 +2603,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "インライン"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "プロファイリング"
@@ -2630,8 +2655,6 @@ msgstr "パラメータがありません:"
#: libraries/common.lib.php:2267 libraries/common.lib.php:2270
#: libraries/display_tbl.lib.php:306
-#, fuzzy
-#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "先頭"
@@ -2639,8 +2662,6 @@ msgstr "先頭"
#: libraries/common.lib.php:2268 libraries/common.lib.php:2271
#: libraries/display_tbl.lib.php:307 server_binlog.php:135
#: server_binlog.php:137
-#, fuzzy
-#| msgid "Previous"
msgctxt "Previous page"
msgid "Previous"
msgstr "前へ"
@@ -2648,16 +2669,12 @@ msgstr "前へ"
#: libraries/common.lib.php:2297 libraries/common.lib.php:2300
#: libraries/display_tbl.lib.php:370 server_binlog.php:170
#: server_binlog.php:172
-#, fuzzy
-#| msgid "Next"
msgctxt "Next page"
msgid "Next"
msgstr "次へ"
#: libraries/common.lib.php:2298 libraries/common.lib.php:2301
#: libraries/display_tbl.lib.php:385
-#, fuzzy
-#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "最後"
@@ -2683,7 +2700,7 @@ msgstr "クリックでオン/オフ切り替え"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -4023,10 +4040,8 @@ msgid "Memory limit"
msgstr "メモリ制限"
#: libraries/config/messages.inc.php:319
-#, fuzzy
-#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
-msgstr "編集、インライン編集、コピー、削除のリンクことです。"
+msgstr "編集、コピー、削除のリンクことです。"
#: libraries/config/messages.inc.php:320
msgid "Where to show the table row links"
@@ -4711,16 +4726,12 @@ msgid "Show function fields"
msgstr "関数フィールドの表示"
#: libraries/config/messages.inc.php:460
-#, fuzzy
-#| msgid "Where to show the table row links"
msgid "Whether to show hint or not"
-msgstr "テーブルの行リンクを表示する場所"
+msgstr "操作ヒントを表示するかどうか。"
#: libraries/config/messages.inc.php:461
-#, fuzzy
-#| msgid "Show indexes"
msgid "Show hint"
-msgstr "インデックスを表示する"
+msgstr "操作ヒントを表示する"
#: libraries/config/messages.inc.php:462
msgid ""
@@ -5301,8 +5312,8 @@ msgstr "、@TABLE@ はテーブル名に"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
@@ -5506,7 +5517,7 @@ msgstr "キーでソート"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5570,7 +5581,7 @@ msgid "The row has been deleted"
msgstr "行を削除しました"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "停止"
@@ -5586,7 +5597,7 @@ msgstr "行の表示"
msgid "total"
msgstr "合計"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "クエリの実行時間 %01.4f 秒"
@@ -5659,7 +5670,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "バッファプール"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB ステータス"
@@ -6054,8 +6065,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
"ト%sにあります。"
@@ -6150,28 +6161,28 @@ msgid "Display MIME types"
msgstr "MIME タイプの表示"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "ホスト"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "生成時間"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "サーバのバージョン"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP のバージョン"
@@ -6306,7 +6317,7 @@ msgstr ""
#: libraries/export/sql.php:329 libraries/export/xml.php:44
msgid "Procedures"
-msgstr "プロシジャ"
+msgstr "プロシージャ"
#: libraries/export/sql.php:346 libraries/export/xml.php:39
msgid "Functions"
@@ -6376,54 +6387,50 @@ msgid "Generated by"
msgstr "生成環境"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "返り値が空でした(行数0)"
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。"
-#: libraries/import.lib.php:1077
-#, fuzzy
-#| msgid "View a structure`s contents by clicking on its name"
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "名前をクリックすることで構造内容を表示します。"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
-#: libraries/import.lib.php:1079
-#, fuzzy
-#| msgid "Edit its structure by following the \"Structure\" link"
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "データベースに移動"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "%s ためのデータがありません"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "テーブルに移動"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "構造のみ"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "ビューに移動"
@@ -6876,14 +6883,14 @@ msgid "Slave status"
msgstr "スレーブステータス"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "変数"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "値"
@@ -7017,18 +7024,14 @@ msgid "Execute every"
msgstr "実行間隔"
#: libraries/rte/rte_events.lib.php:449
-#, fuzzy
-#| msgid "Start"
msgctxt "Start of recurring event"
msgid "Start"
msgstr "開始"
#: libraries/rte/rte_events.lib.php:457
-#, fuzzy
-#| msgid "End"
msgctxt "End of recurring event"
msgid "End"
-msgstr "最後"
+msgstr "終了"
#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912
#: libraries/rte/rte_triggers.lib.php:354
@@ -7098,7 +7101,7 @@ msgid "Returns"
msgstr "返り値の種類"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "時間"
@@ -7532,12 +7535,12 @@ msgid "Synchronize"
msgstr "同期"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "バイナリログ"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "変数"
@@ -7590,11 +7593,11 @@ msgstr "クリア"
msgid "Columns"
msgstr "カラム"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "この SQL をブックマークする"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "すべてのユーザがこのブックマークを利用できるようにする"
@@ -8001,7 +8004,7 @@ msgstr "プロトコルバージョン"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "ユーザ"
@@ -8155,8 +8158,6 @@ msgid "No databases"
msgstr "データベースが存在しません"
#: navigation.php:270
-#, fuzzy
-#| msgid "filter tables by name"
msgid "Filter tables by name"
msgstr "名前でテーブルをフィルタする"
@@ -8451,17 +8452,17 @@ msgstr "ファイルが存在しません"
msgid "Select binary log to view"
msgstr "表示するバイナリログを選択してください"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "ファイル"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "クエリの表示を切り詰める"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "クエリ全体を表示"
@@ -8845,8 +8846,8 @@ msgstr "ユーザと同名のデータベースを削除する"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
@@ -8973,7 +8974,7 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。"
msgid "This server is configured as master in a replication process."
msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。"
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "マスタステータスの表示"
@@ -9125,132 +9126,129 @@ msgstr ""
"このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "スレッド %s は正常終了しました"
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです"
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "ハンドラ"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "クエリキャッシュ"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "スレッド"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "一時データ"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "遅延インサート"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "キーキャッシュ"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "結合"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "ソート中"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "トランザクションコーディネータ"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "すべてのテーブルをフラッシュする(閉じる)"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "開いているテーブルを表示する"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "スレーブホストを表示する"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "スレーブの状態を表示する"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "クエリキャッシュをフラッシュする"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "ランタイム情報"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "全ての状態変数"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "モニタ"
-#: server_status.php:648
-#, fuzzy
-#| msgid "Apply a divisor"
+#: server_status.php:690
msgid "Advisor"
-msgstr "除数を適用する"
+msgstr "アドバイザ"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "再描画間隔:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "含まれている文字:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "警告値のみ表示する"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "種別によるフィルタ..."
-#: server_status.php:723
-#, fuzzy
+#: server_status.php:765
#| msgid "Show only alert values"
msgid "Show unformatted values"
-msgstr "警告値のみ表示する"
+msgstr "生の値(書式化なし)で表示する"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "関連リンク"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "クエリの解析"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "はじめに"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9265,44 +9263,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "起動以後の問い合わせ数:%s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "/時"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "/分"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "/秒"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "ステートメント"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "クエリ数"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "起動以後のネットワークトラフィック:%s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9310,19 +9308,19 @@ msgstr ""
"この MySQL サーバは、レプリケーションプロセスのマスタとス"
"レーブとして動作しています。"
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"この MySQL サーバは、レプリケーションプロセスのマスタとして動作"
"しています。"
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"この MySQL サーバは、レプリケーションプロセスのスレーブとして動"
"作しています。"
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9330,11 +9328,11 @@ msgstr ""
"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。"
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "レプリケーションステータス"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9342,45 +9340,45 @@ msgstr ""
"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ"
"が報告してくる統計は不正確なことがあります"
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "受信済"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "送信済"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "最大同時接続数"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "失敗回数"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "中断"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "コマンド"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。"
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "MySQL サーバへの接続を試みて失敗した回数。"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9389,16 +9387,16 @@ msgstr ""
"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた"
"め一時ファイルにステートメントを保存したトランザクション数"
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "一時バイナリログキャッシュを使用したトランザクション数"
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。"
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9409,24 +9407,24 @@ msgstr ""
"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ"
"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。"
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "mysqld が生成した一時ファイル数"
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数"
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数"
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9434,23 +9432,23 @@ msgstr ""
"使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ"
"ルの数だけ固有のスレッドが用意されます"
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED で書き込まれた行数"
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "FLUSH 文の実行回数"
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "内部で COMMIT 文を実行した回数"
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "テーブルから行を削除した回数"
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9460,7 +9458,7 @@ msgstr ""
"ての情報を持っているか問い合わせることができます。これを開示と言いますが、"
"Handler_discover はその開示されたタイムテーブルの数です"
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9470,7 +9468,7 @@ msgstr ""
"もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT "
"col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)"
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9478,7 +9476,7 @@ msgstr ""
"キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ"
"ルが適切にインデックスされているものと考えられます"
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9487,7 +9485,7 @@ msgstr ""
"キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク"
"エリに範囲指定をしているか、インデックススキャンを行っているときに増加します"
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9495,7 +9493,7 @@ msgstr ""
"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER "
"BY ... DESC の最適化に利用されます"
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9507,7 +9505,7 @@ msgstr ""
"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に"
"不適切なところがあります"
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9518,36 +9516,36 @@ msgstr ""
"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適"
"切か、クエリがインデックスを利用するように書かれていないことを意味します"
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "内部で ROLLBACK 文を実行した回数"
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "テーブル内の行を更新したリクエストの数"
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "テーブル内に行を挿入したリクエストの数"
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)"
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "現在のダーティページの数"
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "フラッシュリクエストを受けたバッファプールのページ数"
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "空きページ数"
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9557,7 +9555,7 @@ msgstr ""
"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し"
"たりできなくなっているページの数です"
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9569,11 +9567,11 @@ msgstr ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計"
"算できます"
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "ページのバッファプールサイズの合計"
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9581,7 +9579,7 @@ msgstr ""
"InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン"
"ダムな順番でスキャンするときに発生します"
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9589,11 +9587,11 @@ msgstr ""
"InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル"
"なフルテーブルスキャンを行うときに発生します"
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB が実行した論理読み込みリクエストの数"
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9601,7 +9599,7 @@ msgstr ""
"InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ"
"ばならなかった論理読み込みの回数"
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9615,51 +9613,51 @@ msgstr ""
"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され"
"ていれば、この値は小さいはずです"
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB バッファプールへの書き込み回数"
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "これまでに fsync() を実行した回数"
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "現在保留されている fsync() の回数"
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "現在保留されている読み込みの数"
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "現在保留されている書き込みの数"
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "これまでのデータ読み込み量 (単位:バイト)"
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "データ読み込み回数の合計"
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "データ書き込み回数の合計"
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "これまでのデータの書き込み量 (単位:バイト)"
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9667,35 +9665,35 @@ msgstr ""
"ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生"
"したウェイトの回数"
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "ログ書き込みリクエストの数"
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "ログファイルへの物理書き込みの回数"
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "ログファイルへの fsync 書き込みの回数"
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "保留中のログファイルへの fsync 回数"
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "保留中のログファイルへの書き込み回数"
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "ログファイルに書き込んだバイト数"
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "作成されたページ数"
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9703,51 +9701,51 @@ msgstr ""
"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位"
"で計算されますが、この値を使えば簡単にバイト単位に変換できます"
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "読み込んだページ数"
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "書き込んだページ数"
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "現在待機中の行ロックの数"
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)"
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)"
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)"
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "行ロック取得時に待機した回数"
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB テーブルから削除した行数"
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB テーブルに挿入した行数"
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB テーブルから読み込んだ行数"
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB テーブルで更新された行数"
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9755,7 +9753,7 @@ msgstr ""
"変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの"
"数。以前は Not_flushed_key_blocks でした"
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9763,7 +9761,7 @@ msgstr ""
"キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え"
"ます"
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9772,11 +9770,11 @@ msgstr ""
"キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ"
"クの最大数です"
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "キャッシュからキーブロックを読み込んだリクエストの数"
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -9786,15 +9784,15 @@ msgstr ""
"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/"
"Key_read_requests で計算できます"
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "キャッシュにキーブロックを書き込んだリクエストの数"
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "ディスクにキーブロックを物理書き込みした回数"
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -9804,17 +9802,17 @@ msgstr ""
"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ"
"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です"
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr "サーバが起動してからの同時接続の最大数。"
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数"
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9822,19 +9820,19 @@ msgstr ""
"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ"
"シュの値が小さすぎます"
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "開いているファイルの数"
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "開いているストリームの数 (主にログの記録用です)"
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "開いているテーブルの数"
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9844,19 +9842,19 @@ msgstr ""
"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され"
"るかもしれません。"
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "クエリキャッシュの空きメモリ量"
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "キャッシュのヒット数"
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "キャッシュに追加されたクエリの数"
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9868,7 +9866,7 @@ msgstr ""
"エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って"
"削除するクエリを決めます"
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9876,19 +9874,19 @@ msgstr ""
"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ"
"シュしないことになっている) クエリの数"
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "キャッシュに登録されているクエリの数"
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "クエリキャッシュの総ブロック数"
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "フェイルセーフレプリケーションの状態 (未実装)"
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9896,11 +9894,11 @@ msgstr ""
"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン"
"デックスをよく確認してください"
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr "参照テーブルで範囲検索をした結合の数"
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -9908,7 +9906,7 @@ msgstr ""
"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数"
"(0 でない場合はテーブルのインデックスをよく確認してください)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9916,15 +9914,15 @@ msgstr ""
"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ"
"ん)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "最初のテーブルをフルスキャンした結合の数"
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数"
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9932,22 +9930,22 @@ msgstr ""
"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起"
"動時からの合計)"
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "このサーバがマスタに接続するスレーブである場合は ON になります"
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数"
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数"
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -9956,23 +9954,23 @@ msgstr ""
"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合"
"は sort_buffer_size システム変数の値を増やした方がよいでしょう"
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "範囲指定付きでソートが行われた回数"
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "ソート済の行数"
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "テーブルをスキャンしたときに実行されたソートの回数"
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "テーブルロックをすぐに取得できた回数"
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9983,7 +9981,7 @@ msgstr ""
"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで"
"もだめならテーブルを分割するか、レプリケーションを利用してください"
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -9993,11 +9991,11 @@ msgstr ""
"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を"
"大きくしてください"
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "現在開いている接続の数"
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10008,61 +10006,59 @@ msgstr ""
"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題"
"がない場合はふつうあまりパフォーマンスは向上しません)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "スリープしていないスレッドの数"
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "モニタ開始"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "使用方法/セットアップ"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "グラフの再配置/変更完了"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "グラフの追加"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "グラフの再配置/変更"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "再描画間隔"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "1 段のグラフ数"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "管理エラー:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
-#, fuzzy
-#| msgid "Restore default value"
+#: server_status.php:1474
msgid "Reset to default"
-msgstr "デフォルト値に戻す"
+msgstr "デフォルトに戻す"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "モニタの使用方法"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10076,7 +10072,7 @@ msgstr ""
"お、general_log は大量のデータを生成し、サーバの負荷を 15% 増加させますので、"
"注意するようにしてください。"
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10084,17 +10080,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
-#, fuzzy
-#| msgid ""
-#| "Using the monitor: Ok, you are good to go! Once you click "
-#| "'Start monitor' 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.
When you get to see a sudden spike in activity, select the "
-#| "relevant time span on any chart by holding down the left mouse button and "
-#| "panning over the chart. This will load statistics from the logs helping "
-#| "you find what caused the activity spike.
"
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10108,12 +10094,13 @@ msgstr ""
"モニタの使い方: 「モニタ開始」をクリックすると、ブラウザは一定間"
"隔で表示されている全てのグラフを更新します。「設定」のところよりグラフを追加"
"や再描画間隔の変更が行え、それぞれのグラフにある歯車のアイコンを通じて削除を"
-"行えます。
"
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10126,77 +10113,71 @@ msgstr ""
"ておいてください。ですから、テーブルのモニタで必要としないのであれば、しばら"
"くの間 general_log を無効にして空にしておくのが望ましいです。"
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU 使用状況"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "グラフの削除"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "メモリ使用状況"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "スワップ状況"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "状態変数"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "系列の選択:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "You must provide a valid table name"
msgid "or type variable name:"
msgstr "有効なテーブル名を指定してください"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "差分値として表示する"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "除数を適用する"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "データ値に単位を追加する"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "この系列を追加する"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "系列をクリアする"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "グラフの系列"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "ログの統計"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "選択期間:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する"
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う"
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10204,17 +10185,17 @@ msgstr ""
"
ログの統計元を選択することができます。
結果はクエリ文でグループ化されま"
"す。"
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "クエリの解析"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 秒"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10612,10 +10593,11 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
-"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し"
-"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
-"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
+"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定"
+"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ"
+"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい"
+"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
+"せん。"
#: setup/lib/index.lib.php:292
#, php-format
@@ -10671,34 +10653,34 @@ msgstr "キーは文字、数字[em]そして[/em]特殊文字を含める必要
msgid "Browse foreign values"
msgstr "参照されている値を表示する"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。"
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "id %1$d の行を挿入しました"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP コードとして表示"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL クエリを表示"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "検証した SQL 文"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "テーブル `%s` のインデックスに問題があります"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "ラベル"
@@ -11450,9 +11432,9 @@ msgid "Current amount of Questions: %s"
msgstr "現在の接続"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "SQL クエリの表示"
#: po/advisory_rules.php:16
@@ -11474,7 +11456,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "クエリキャッシュをフラッシュする"
#: po/advisory_rules.php:21
@@ -11662,12 +11644,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "ディスク使用量"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11724,8 +11700,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11834,9 +11810,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "一時テーブルの作成を許可する"
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11854,13 +11830,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "一時テーブルの作成を許可する"
#: po/advisory_rules.php:113
#, php-format
@@ -11892,8 +11870,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "表示できるルーチンがありません"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11913,7 +11893,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11936,7 +11916,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11945,7 +11925,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11958,8 +11938,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "テーブルの行リンクを表示する場所"
#: po/advisory_rules.php:136
#, fuzzy
@@ -11969,8 +11951,8 @@ msgstr "テーブルの行リンクを表示する場所"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12002,10 +11984,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s テーブル"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "テーブルの行リンクを表示する場所"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12032,8 +12013,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s テーブル"
#: po/advisory_rules.php:152
msgid ""
@@ -12074,8 +12058,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "ソートバッファのサイズ"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12095,8 +12081,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "ソートバッファのサイズ"
#: po/advisory_rules.php:168
#, php-format
@@ -12104,7 +12092,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12124,7 +12112,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "テーブルを作成"
#: po/advisory_rules.php:176
@@ -12145,10 +12133,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "開いているテーブルを表示する"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "インポートするファイルの形式"
#: po/advisory_rules.php:181
msgid ""
@@ -12171,7 +12159,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "インポートするファイルの形式"
#: po/advisory_rules.php:186
@@ -12218,7 +12206,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "キーキャッシュ"
#: po/advisory_rules.php:201
@@ -12236,8 +12224,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "SQL コマンドの追跡は非アクティブです。"
#: po/advisory_rules.php:206
#, fuzzy
@@ -12296,10 +12286,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time は %d 秒に設定されています。"
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "接続"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "永続的な接続"
#: po/advisory_rules.php:221
msgid ""
@@ -12322,9 +12312,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "圧縮通信を行う"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "永続的な接続"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12346,7 +12336,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "永続的な接続"
#: po/advisory_rules.php:231
@@ -12360,8 +12350,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "インポートするファイルの形式"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12382,7 +12374,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "インポートするファイルの形式"
#: po/advisory_rules.php:243
@@ -12409,8 +12401,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "バッファプールの大きさ"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12522,6 +12516,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "ディスク使用量"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "開いているテーブルを表示する"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "接続"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "圧縮通信を行う"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU 使用状況"
+
+#~ msgid "Memory Usage"
+#~ msgstr "メモリ使用状況"
+
+#~ msgid "Swap Usage"
+#~ msgstr "スワップ状況"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS ワークブック"
diff --git a/po/ka.po b/po/ka.po
index ac68bbf548..f71789f8e2 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "ყველას ჩვენება"
@@ -46,7 +46,7 @@ msgstr "ძებნა"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "აღწერილობა"
@@ -202,7 +202,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "კომენტარები"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "კომენტარები"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "არა"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "არა"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -365,7 +365,7 @@ msgstr "Relational schema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -638,11 +638,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -651,7 +651,7 @@ msgstr "ხედო"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "რეპლიკაცია"
@@ -693,7 +693,7 @@ msgstr "Check tables having overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ექსპორტი"
@@ -761,10 +761,10 @@ msgstr "დაბლოკილი ცხრილების გამოტ
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -786,7 +786,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "მდგომარეობა"
@@ -889,11 +889,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -933,7 +933,7 @@ msgstr "The bookmark has been deleted."
msgid "Showing bookmark"
msgstr "Showing bookmark"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s created"
@@ -984,15 +984,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "ნამდვილად გსურთ "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1081,12 +1081,12 @@ msgstr "პრივილეგიების გადატვირთვ
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1094,17 +1094,17 @@ msgstr ""
msgid "Edit"
msgstr "რედაქტირება"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "სერვერის არჩევა"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1117,13 +1117,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "სულ"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1155,7 +1155,7 @@ msgstr "სერვერის არჩევა"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "პროცესები"
@@ -1175,173 +1175,205 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
msgstr "სტატისტიკის ჩევნება"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Query cache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Query cache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Query cache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Log file count"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "სულ"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Free pages"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "მიღებულია"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "კავშირები"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "სპარსული"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "ტრაფიკი"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "General relation features"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Rename database to"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Snap to grid"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "არაა"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1349,397 +1381,397 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "ჩართულია"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "გათიშვა"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Other core settings"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "Other core settings"
msgid "Current settings"
msgstr "Other core settings"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Report title"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "მონაცემთა ბაზები არაა"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "ფაილები"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "ფაილები"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "ჩასმული სტრიქონების რაოდენობა"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "სულ"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Load"
msgid "Loading logs"
msgstr "ჩატვირთვა"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "გადატვირთვა"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "შემოტანა"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "მოთხოვნის განახლება"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "დოკუმენტაცია"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "დეტალები..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Customization"
msgid "Justification"
msgstr "Customization"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "გაუქმება"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "ჩატვირთვა"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "პროცესები"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Rename database to"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Rename database to"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copy database to"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "სიმბოლოთა ნაკრები"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "ცხრილის შექმნა"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "გამოიყენე ცხრილები"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "ახალი ველის დამატება"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ძებნა"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search results"
msgstr "SQL Query box"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search results"
msgstr "SQL Query box"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "არჩევა"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s-ის წაშლა"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "SQL Query box"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "SQL Query box"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "No rows selected"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "შეცვლა"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maximum execution time"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1747,112 +1779,112 @@ msgstr "Maximum execution time"
msgid "Save"
msgstr "შენახვა"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL Query box"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL Query box"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "იგნორირება"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s ველის დამატება"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "აირჩიეთ საჩვენებელი ველი"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "პაროლის დაგენერირება"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "დაგენერირება"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "პაროლის შეცვლა"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "ორშ"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1862,32 +1894,32 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "მონაცემთა ბაზები არაა"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "შემოწირულობა"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "წინა"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1895,96 +1927,96 @@ msgid "Next"
msgstr "შემდეგი"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "სულ"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ბინარული"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "მარ"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "აპრ"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "მაი"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ივნ"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ივლ"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "აგვ"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ოქტ"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1992,78 +2024,78 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "დეკ"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "კვი"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "ორშ"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "სამ"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "პარ"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2071,102 +2103,102 @@ msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "შაბ"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "კვი"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "ორშ"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "სამ"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ოთხ"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "ხუთ"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "პარ"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "შაბ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "ვიკი"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2437,11 +2469,11 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2582,7 +2614,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "ცხრილები"
@@ -2667,7 +2699,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "სერვერი"
@@ -2716,7 +2748,7 @@ msgid "Documentation"
msgstr "დოკუმენტაცია"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL მოთხოვნა"
@@ -2756,7 +2788,7 @@ msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "განახლება"
@@ -2779,7 +2811,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ძრავები"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profiling"
@@ -2886,7 +2918,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5666,12 +5698,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5898,7 +5930,7 @@ msgstr "Sort by key"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5968,7 +6000,7 @@ msgid "The row has been deleted"
msgstr "სტრიქონი წაიშალა"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Kill"
@@ -5984,7 +6016,7 @@ msgstr "Showing rows"
msgid "total"
msgstr "სულ"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
@@ -6060,7 +6092,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB-ის მდგომარეობა"
@@ -6454,8 +6486,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6576,28 +6608,28 @@ msgid "Display MIME types"
msgstr "MIME-ის ხელმისაწვდომი ტიპები"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "ჰოსტი"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "დაგენერირების დრო"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "სერვერის ვერსია"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP-ის ვერსია"
@@ -6798,51 +6830,51 @@ msgid "Generated by"
msgstr "Generated by"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "მონაცემთა ბაზები არაა"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Missing data for %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "მონაცემთა ბაზები არაა"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "მხოლოდ სტრუქტურა"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7302,14 +7334,14 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "ცვლადი"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "მნიშვნელობა"
@@ -7530,7 +7562,7 @@ msgid "Returns"
msgstr "Return type"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "დრო"
@@ -8032,12 +8064,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "ბინარული ჟურნალი"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "ცვლადები"
@@ -8095,11 +8127,11 @@ msgstr "გაწმენდა"
msgid "Columns"
msgstr "სვეტების სახელები"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -8572,7 +8604,7 @@ msgstr "ოქმის ვერსია"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "მომხმარებელი"
@@ -9069,17 +9101,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!"
msgid "Select binary log to view"
msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "ფაილები"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -9472,13 +9504,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -9606,7 +9638,7 @@ msgstr "The privileges were reloaded successfully."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -9749,136 +9781,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Handler"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Threads"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "დროებითი მონაცემები"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Joins"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "დალაგება"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "განახლება"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "არ შეცვალო პაროლი"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Show open tables"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Show open tables"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "მოთხოვნის ტიპი"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "ინფორმაცია"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9893,71 +9925,71 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Customize startup page"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "საათში"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "წუთში"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "წამში"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Statements"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "რეპლიკაცია"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9965,47 +9997,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "მიღებულია"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "გაიგზავნა"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "შეწყვეტილია"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "ბრძანება"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -10015,16 +10047,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -10036,11 +10068,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10048,7 +10080,7 @@ msgstr ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10056,7 +10088,7 @@ msgstr ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10064,23 +10096,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "The number of INSERT DELAYED rows written."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "The number of executed FLUSH statements."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "The number of internal COMMIT statements."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -10090,7 +10122,7 @@ msgstr ""
"table with a given name. This is called discovery. Handler_discover "
"indicates the number of time tables have been discovered."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -10100,7 +10132,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -10108,7 +10140,7 @@ 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:1153
+#: server_status.php:1195
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 "
@@ -10118,7 +10150,7 @@ msgstr ""
"incremented if you are querying an index column with a range constraint or "
"if you are doing an index scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10126,7 +10158,7 @@ msgstr ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -10138,7 +10170,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -10150,267 +10182,267 @@ msgstr ""
"tables are not properly indexed or that your queries are not written to take "
"advantage of the indexes you have."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:1164
-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:1165
-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:1166
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
-#: server_status.php:1167
-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:1168
-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:1169
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
-
-#: server_status.php:1170
-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:1171
-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:1172
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "The number writes done to the InnoDB buffer pool."
-
-#: server_status.php:1173
-msgid "The number of fsync() operations so far."
-msgstr "The number of fsync() operations so far."
-
-#: server_status.php:1174
-msgid "The current number of pending fsync() operations."
-msgstr "The current number of pending fsync() operations."
-
-#: server_status.php:1175
-msgid "The current number of pending reads."
-msgstr "The current number of pending reads."
-
-#: server_status.php:1176
-msgid "The current number of pending writes."
-msgstr "The current number of pending writes."
-
-#: server_status.php:1177
-msgid "The amount of data read so far, in bytes."
-msgstr "The amount of data read so far, in bytes."
-
-#: server_status.php:1178
-msgid "The total number of data reads."
-msgstr "The total number of data reads."
-
-#: server_status.php:1179
-msgid "The total number of data writes."
-msgstr "The total number of data writes."
-
-#: server_status.php:1180
-msgid "The amount of data written so far, in bytes."
-msgstr "The amount of data written so far, in bytes."
-
-#: server_status.php:1181
-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:1182
-msgid "The number of doublewrite operations that have been performed."
-msgstr "The number of doublewrite operations that have been performed."
-
-#: server_status.php:1183
-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:1184
-msgid "The number of log write requests."
-msgstr "The number of log write requests."
-
-#: server_status.php:1185
-msgid "The number of physical writes to the log file."
-msgstr "The number of physical writes to the log file."
-
-#: server_status.php:1186
-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:1187
-msgid "The number of pending log file fsyncs."
-msgstr "The number of pending log file fsyncs."
-
-#: server_status.php:1188
-msgid "Pending log file writes."
-msgstr "Pending log file writes."
-
-#: server_status.php:1189
-msgid "The number of bytes written to the log file."
-msgstr "The number of bytes written to the log file."
-
-#: server_status.php:1190
-msgid "The number of pages created."
-msgstr "The number of pages created."
-
-#: server_status.php:1191
-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:1192
-msgid "The number of pages read."
-msgstr "The number of pages read."
-
-#: server_status.php:1193
-msgid "The number of pages written."
-msgstr "The number of pages written."
-
-#: server_status.php:1194
-msgid "The number of row locks currently being waited for."
-msgstr "The number of row locks currently being waited for."
-
-#: server_status.php:1195
-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:1196
-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:1197
-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:1198
-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:1199
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "The number of rows deleted from InnoDB tables."
-
-#: server_status.php:1200
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "The number of rows inserted in InnoDB tables."
-
-#: server_status.php:1201
-msgid "The number of rows read from InnoDB tables."
-msgstr "The number of rows read from InnoDB tables."
-
-#: server_status.php:1202
-msgid "The number of rows updated in InnoDB tables."
-msgstr "The number of rows updated in InnoDB tables."
-
-#: server_status.php:1203
-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:1204
-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:1205
-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:1206
-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."
+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:1207
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:1208
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
+
+#: server_status.php:1209
+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:1210
+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:1211
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:1212
+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:1213
+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:1214
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: server_status.php:1215
+msgid "The number of fsync() operations so far."
+msgstr "The number of fsync() operations so far."
+
+#: server_status.php:1216
+msgid "The current number of pending fsync() operations."
+msgstr "The current number of pending fsync() operations."
+
+#: server_status.php:1217
+msgid "The current number of pending reads."
+msgstr "The current number of pending reads."
+
+#: server_status.php:1218
+msgid "The current number of pending writes."
+msgstr "The current number of pending writes."
+
+#: server_status.php:1219
+msgid "The amount of data read so far, in bytes."
+msgstr "The amount of data read so far, in bytes."
+
+#: server_status.php:1220
+msgid "The total number of data reads."
+msgstr "The total number of data reads."
+
+#: server_status.php:1221
+msgid "The total number of data writes."
+msgstr "The total number of data writes."
+
+#: server_status.php:1222
+msgid "The amount of data written so far, in bytes."
+msgstr "The amount of data written so far, in bytes."
+
+#: server_status.php:1223
+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:1224
+msgid "The number of doublewrite operations that have been performed."
+msgstr "The number of doublewrite operations that have been performed."
+
+#: server_status.php:1225
+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:1226
+msgid "The number of log write requests."
+msgstr "The number of log write requests."
+
+#: server_status.php:1227
+msgid "The number of physical writes to the log file."
+msgstr "The number of physical writes to the log file."
+
+#: server_status.php:1228
+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:1229
+msgid "The number of pending log file fsyncs."
+msgstr "The number of pending log file fsyncs."
+
+#: server_status.php:1230
+msgid "Pending log file writes."
+msgstr "Pending log file writes."
+
+#: server_status.php:1231
+msgid "The number of bytes written to the log file."
+msgstr "The number of bytes written to the log file."
+
+#: server_status.php:1232
+msgid "The number of pages created."
+msgstr "The number of pages created."
+
+#: server_status.php:1233
+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:1234
+msgid "The number of pages read."
+msgstr "The number of pages read."
+
+#: server_status.php:1235
+msgid "The number of pages written."
+msgstr "The number of pages written."
+
+#: server_status.php:1236
+msgid "The number of row locks currently being waited for."
+msgstr "The number of row locks currently being waited for."
+
+#: server_status.php:1237
+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:1238
+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:1239
+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:1240
+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:1241
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "The number of rows deleted from InnoDB tables."
+
+#: server_status.php:1242
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "The number of rows inserted in InnoDB tables."
+
+#: server_status.php:1243
+msgid "The number of rows read from InnoDB tables."
+msgstr "The number of rows read from InnoDB tables."
+
+#: server_status.php:1244
+msgid "The number of rows updated in InnoDB tables."
+msgstr "The number of rows updated in InnoDB tables."
+
+#: server_status.php:1245
+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:1246
+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:1247
+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:1248
+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:1249
+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."
@@ -10419,15 +10451,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10437,17 +10469,17 @@ msgstr ""
"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."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10455,38 +10487,38 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10498,7 +10530,7 @@ msgstr ""
"cache size. The query cache uses a least recently used (LRU) strategy to "
"decide which queries to remove from the cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10506,19 +10538,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10526,11 +10558,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10538,7 +10570,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10546,15 +10578,15 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10562,11 +10594,11 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10574,13 +10606,13 @@ msgstr ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10590,23 +10622,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "The number of sorted rows."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10618,7 +10650,7 @@ msgstr ""
"should first optimize your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10628,11 +10660,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "The number of currently open connections."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10644,67 +10676,67 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Startup"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "ახალი ველის დამატება"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "განახლება"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR textarea columns"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Restore default value"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "ინფორმაცია"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10713,7 +10745,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10721,7 +10753,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10733,7 +10765,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "მოთხოვნის ტიპი"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10846,7 +10868,7 @@ msgid_plural "%d seconds"
msgstr[0] "წამში"
msgstr[1] "წამში"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11293,9 +11315,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11366,36 +11388,36 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ჩამატებული სტრიქონის id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP კოდის სახით ჩვენება"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Showing SQL query"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Label"
@@ -12202,9 +12224,9 @@ msgid "Current amount of Questions: %s"
msgstr "დაუცველი კავშირი"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "SQL მოთხოვნების ჩვენება"
#: po/advisory_rules.php:16
@@ -12226,7 +12248,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Flush query cache"
#: po/advisory_rules.php:21
@@ -12409,12 +12431,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "ადგილის გამოყენება"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12471,8 +12487,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12581,9 +12597,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12601,13 +12617,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:113
#, php-format
@@ -12639,8 +12657,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "Rate of joins without indexes"
+msgstr "There are no configured servers"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12660,7 +12680,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12683,7 +12703,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12692,7 +12712,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12705,7 +12725,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12714,8 +12734,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12746,10 +12766,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s table(s)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12776,8 +12794,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s table(s)"
#: po/advisory_rules.php:152
msgid ""
@@ -12818,8 +12838,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12839,8 +12861,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:168
#, php-format
@@ -12848,7 +12872,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12868,7 +12892,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "ცხრილის შექმნა"
#: po/advisory_rules.php:176
@@ -12889,10 +12913,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Show open tables"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "შემოტანილი ფაილების ფორმატი"
#: po/advisory_rules.php:181
msgid ""
@@ -12915,7 +12939,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "შემოტანილი ფაილების ფორმატი"
#: po/advisory_rules.php:186
@@ -12962,7 +12986,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Key cache"
#: po/advisory_rules.php:201
@@ -12980,8 +13004,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Key cache"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -13037,10 +13063,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "კავშირები"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Persistent connections"
#: po/advisory_rules.php:221
msgid ""
@@ -13063,9 +13089,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "კავშირის შეკუმშვა"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Persistent connections"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -13087,7 +13113,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Persistent connections"
#: po/advisory_rules.php:231
@@ -13101,8 +13127,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "შემოტანილი ფაილების ფორმატი"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -13123,7 +13151,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "შემოტანილი ფაილების ფორმატი"
#: po/advisory_rules.php:243
@@ -13150,8 +13178,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool size"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13263,6 +13293,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "ადგილის გამოყენება"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Show open tables"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "კავშირები"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "კავშირის შეკუმშვა"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "გამოყენება"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "გამოყენება"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ko.po b/po/ko.po
index e9e4352178..3135e8022a 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-05 14:17+0200\n"
"Last-Translator: Chung-Ook Lee \n"
"Language-Team: korean \n"
+"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "모두 보기"
@@ -46,7 +46,7 @@ msgstr "검색"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "키 이름"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "설명"
@@ -202,7 +202,7 @@ msgstr "링크 대상:"
msgid "Comments"
msgstr "설명(코멘트)"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "설명(코멘트)"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "아니오 "
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "아니오 "
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -351,8 +351,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
-"s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
+"%s여기를 클릭%s하십시오."
#: db_operations.php:584
msgid "Edit or export relational schema"
@@ -360,7 +360,7 @@ msgstr ""
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -623,8 +623,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -634,7 +634,7 @@ msgstr "뷰"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "복제"
@@ -676,7 +676,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "내보내기"
@@ -742,10 +742,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -766,7 +766,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "상태"
@@ -869,8 +869,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -910,7 +910,7 @@ msgstr "북마크를 제거했습니다."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -959,15 +959,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "정말로 다음을 실행하시겠습니까? "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1052,12 +1052,12 @@ msgstr "사용권한을 갱신합니다(Reloading the privileges)"
msgid "Removing Selected Users"
msgstr "선택한 사용자를 삭제"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1065,17 +1065,17 @@ msgstr ""
msgid "Edit"
msgstr "수정"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "서버 선택"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL 질의"
@@ -1087,13 +1087,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "전체 사용량"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1125,7 +1125,7 @@ msgstr "서버 선택"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "프로세스 목록"
@@ -1145,166 +1145,195 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "행(레코드) 통계"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to write file to disk."
+msgid "Local monitor configuration icompatible"
+msgstr "디스크 쓰기에 실패했습니다."
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "질의 종류"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "질의 종류"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "질의 종류"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "전체 사용량"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "전체 사용량"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "받음"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "연결 수"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "테이블 작업"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "소통량"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "Deleting %s"
msgid "Settings"
msgstr "%s 을 삭제합니다"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "데이터베이스 이름 변경"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "없음"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1312,383 +1341,383 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "사용가능"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "무효"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Change"
msgid "Change settings"
msgstr "변경"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "Connections"
msgid "Current settings"
msgstr "연결 수"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "파일 가져오기"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "데이터베이스가 없습니다"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of columns"
msgid "Sum of grouped rows:"
msgstr "컬럼수"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "전체 사용량"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Local"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "데이터베이스 이름 변경"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "내보내기"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "질의 업데이트"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "문서"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authenticating..."
msgid "Justification"
msgstr "인증중입니다..."
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "프로세스 목록"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "데이터베이스 이름 변경"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "데이터베이스 이름 변경"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "데이터베이스 복사"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one column."
msgid "Table must have at least one column"
msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "새 페이지 만들기"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "사용할 테이블"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "인덱스"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "grid 보기"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "검색"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL 질의"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL 질의"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "보기"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s 을 삭제합니다"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL 질의"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL 질의"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "변경"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1696,109 +1725,109 @@ msgstr ""
msgid "Save"
msgstr "저장"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL 질의"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL 질의"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "필드 추가하기"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "출력할 필드 선택"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "암호 변경"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "암호 변경"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "월"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1806,28 +1835,28 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "데이터베이스가 없습니다"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "완료"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "이전"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1835,149 +1864,149 @@ msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "오늘"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "1월"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "2월"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "3월"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "4월"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "5월"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "6월"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "7월"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "8월"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "9월"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "10월"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "11월"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "12월"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "12월"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "일요일"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "월요일"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "화요일"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "수요일"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "목요일"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "금요일"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "토요일"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1985,84 +2014,84 @@ msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "주"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "시"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "분"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "초"
@@ -2318,8 +2347,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@@ -2458,7 +2487,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "테이블 수"
@@ -2536,7 +2565,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "서버"
@@ -2585,7 +2614,7 @@ msgid "Documentation"
msgstr "문서"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL 질의"
@@ -2623,7 +2652,7 @@ msgid "Create PHP Code"
msgstr "PHP 코드 보기"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2644,7 +2673,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2749,7 +2778,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5324,8 +5353,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5536,7 +5565,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5605,7 +5634,7 @@ msgid "The row has been deleted"
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Kill"
@@ -5621,7 +5650,7 @@ msgstr "행(레코드) 보기"
msgid "total"
msgstr "합계"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "질의 실행시간 %01.4f 초"
@@ -5694,7 +5723,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -6038,8 +6067,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6146,28 +6175,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "호스트"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "처리한 시간"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "서버 버전"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP 버전"
@@ -6366,49 +6395,49 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "결과값이 없습니다. (빈 레코드 리턴.)"
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "데이터베이스가 없습니다"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "구조만"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6856,14 +6885,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "변수"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "값"
@@ -7077,7 +7106,7 @@ msgid "Returns"
msgstr "데이터베이스 사용량 통계"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "시간"
@@ -7545,13 +7574,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "바이너리"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "환경설정값"
@@ -7608,11 +7637,11 @@ msgstr ""
msgid "Columns"
msgstr "열(칼럼) 이름"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "이 SQL 질의를 북마크함"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7976,7 +8005,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "사용자"
@@ -8084,8 +8113,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
-"s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
+"%s여기를 클릭%s하십시오."
#: main.php:314
msgid ""
@@ -8428,18 +8457,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "필드"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8832,8 +8861,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8961,7 +8990,7 @@ msgstr "권한을 다시 로딩했습니다."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9100,133 +9129,133 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "쓰레드 %s 를 죽였습니다."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "질의 종류"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "확장된 inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "테이블 보기"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "런타임 정보"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "암호를 변경하지 않음"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "테이블 보기"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "테이블 보기"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
msgid "Related links:"
msgstr "테이블 작업"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "질의 종류"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "함수"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9241,131 +9270,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "명세"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "받음"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "보냄"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "실패한 시도"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "커맨드"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9373,78 +9402,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9452,7 +9481,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9460,42 +9489,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9503,33 +9532,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9538,227 +9567,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9766,99 +9795,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9866,18 +9895,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9885,62 +9914,62 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "토"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "필드 추가하기"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "컬럼 추가/삭제"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9949,7 +9978,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9957,7 +9986,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9969,7 +9998,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9978,102 +10007,92 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "사용법(량)"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "데이터베이스 이름 변경"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "사용법(량)"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
msgid "Select series:"
msgstr "모두 선택"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "새 사용자 추가"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL 질의"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "행(레코드) 통계"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
msgid "Selected time range:"
msgstr "모두 선택"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "질의 종류"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 초"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10483,36 +10502,36 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함"
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP 코드 보기"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL 쿼리 보기"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL 검사"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Label"
@@ -11293,8 +11312,8 @@ msgid "Current amount of Questions: %s"
msgstr "연결 수"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "SQL 질의"
#: po/advisory_rules.php:16
@@ -11315,7 +11334,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL 질의"
#: po/advisory_rules.php:21
@@ -11492,12 +11511,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "공간 사용량"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11553,8 +11566,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11659,9 +11672,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "임시테이블 생성 허용."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11679,13 +11692,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "임시테이블 생성 허용."
#: po/advisory_rules.php:113
#, php-format
@@ -11717,7 +11732,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11736,7 +11751,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11759,7 +11774,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11768,7 +11783,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11781,7 +11796,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11790,8 +11805,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11822,11 +11837,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s개 테이블 "
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11853,8 +11865,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s개 테이블 "
#: po/advisory_rules.php:152
msgid ""
@@ -11893,7 +11908,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11914,7 +11929,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11923,7 +11938,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11942,7 +11957,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "새 페이지 만들기"
#: po/advisory_rules.php:176
@@ -11961,9 +11976,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "테이블 보기"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "파일 문자셋:"
#: po/advisory_rules.php:181
msgid ""
@@ -11985,7 +12000,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "파일 문자셋:"
#: po/advisory_rules.php:186
@@ -12027,7 +12042,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "질의 종류"
#: po/advisory_rules.php:201
@@ -12045,8 +12060,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "트래킹이 활성화되어 있지 않습니다."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12102,9 +12119,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "연결 수"
#: po/advisory_rules.php:221
@@ -12129,7 +12146,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "연결 수"
#: po/advisory_rules.php:226
@@ -12152,7 +12169,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "연결 수"
#: po/advisory_rules.php:231
@@ -12166,8 +12183,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+msgid "Percentage of aborted clients"
+msgstr "테이블 설명"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12187,7 +12205,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "테이블 설명"
#: po/advisory_rules.php:243
@@ -12212,7 +12230,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12319,6 +12337,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "공간 사용량"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "테이블 보기"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "연결 수"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "연결 수"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "사용법(량)"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "사용법(량)"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/lt.po b/po/lt.po
index fab2b1ae1a..350984fd85 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-08 18:05+0200\n"
"Last-Translator: Kęstutis \n"
"Language-Team: lithuanian \n"
+"Language: lt\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"
+"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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Rodyti viską"
@@ -47,7 +47,7 @@ msgstr "Paieška"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Indekso pavadinimas"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Paaiškinimas"
@@ -201,7 +201,7 @@ msgstr "Sąryšis su"
msgid "Comments"
msgstr "Komentarai"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Komentarai"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ne"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -355,7 +355,7 @@ msgstr "Keisti arba eksportuoti ryšių schemą"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -616,11 +616,11 @@ msgstr "Sekimas yra neaktyvus."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
-"sdokumentacijoje%s."
+"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
+"%sdokumentacijoje%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -629,7 +629,7 @@ msgstr "Rodinys"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikavimas"
@@ -671,7 +671,7 @@ msgstr "Pažymėti turinčias perteklių"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksportuoti"
@@ -733,10 +733,10 @@ msgstr "Sekamos lentelės"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -756,7 +756,7 @@ msgstr "Atnaujinta"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Būsena"
@@ -855,11 +855,11 @@ msgstr "Atvaizdis įrašytas faile %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
-"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
+"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
+"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -899,7 +899,7 @@ msgstr "Nuoroda ištrinta."
msgid "Showing bookmark"
msgstr "Rodomos žymelės"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Žymė %s sukurta"
@@ -952,15 +952,15 @@ msgstr "Spustelėkite pažymėjimui"
msgid "Click to unselect"
msgstr "Spustelėkite atžymėjimui"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ar tikrai norite "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
@@ -1035,12 +1035,12 @@ msgstr "Perkraunamos privilegijos"
msgid "Removing Selected Users"
msgstr "Šalinami pažymėti vartotojai"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Uždaryti"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1048,15 +1048,15 @@ msgstr "Uždaryti"
msgid "Edit"
msgstr "Redaguoti"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Tiesioginių duomenų srauto diagrama"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Tiesioginių prisijungimų/procesų diagrama"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Tiesioginė užklausos diagrama"
@@ -1067,13 +1067,13 @@ msgstr "Statiniai duomenys"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Iš viso"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Kita"
@@ -1103,7 +1103,7 @@ msgstr "Serverio duomenų srautas (KiB)"
msgid "Connections since last refresh"
msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesai"
@@ -1121,158 +1121,190 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Užklausų statistika"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Nepavyko perskaityti konfigūracijos failo"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Užklausų saugykla"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Užklausų saugykla"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Užklausų saugykla"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Sistemos CPU naudojimas"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Sistemos atmintis"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Sistemos swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Vidutinis apkrovimas"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Iš viso atminties"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Podėlio atmintis"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Buferio atmintis"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Laisva atmintis"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Naudojama atmintis"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Iš viso Swap"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Podėlio Swap"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Naudojama swap"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Laisva Swap"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Išsiųsta baitų"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Gauta baitų"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Prisijungimai"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versijos"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Apkrovimas"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Nustatymai"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Pašalinti diagramą"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Keisti pavadinimą ir etiketes"
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Pritraukti prie tinklelio"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Prašome pridėti bent vieną kintamąjį į eilę"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Ne"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log ir slow_query_log yra įjungti."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log įjungtas."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log įjungtas."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log ir general_log yra išjungti."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1280,12 +1312,12 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1294,30 +1326,30 @@ msgstr ""
"serverio pakartotino paleidimo:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Įjungti %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Išjungti %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Nustatyti long_query_time į %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1325,124 +1357,124 @@ msgstr ""
"Jūs negalite pakeisti šių kintamųjų. Prašome prisijungti kaip root arba "
"susisiekite su Jūsų duombazės administratoriumi."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Keisti nustatymus"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Dabartiniai nustatymai"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Diagramos antraštė"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Skirtumas"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Padalintas į %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Eiti į žurnalo lentelę"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filtrai"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtras"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filtro užklausa pagal žodį/regexp:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "Sugrupuoti užklausas, nepaisant kintamųjų duomenų WHERE dalyje"
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Įkeltų eilučių skaičius"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Iš viso:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Įkeliami žurnalai"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "Puslapį įkelti iš naujo"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr "Paveiktos eilutės:"
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
"Nepavyko išnagrinėti konfigūracinio failo. Atrodo, kad tai nėra teisingas "
"JSON kodas."
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
@@ -1450,182 +1482,182 @@ msgstr ""
"Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma "
"į numatytąją konfigūraciją..."
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importuoti"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Atnaujinti užklausą"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentacija"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Detalės"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Atpažinimas"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Atšaukti"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Įkeliama"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Vykdoma užklausa"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Klaida vykdant užklausą"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Šalinamas stulpelis"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Pridedamas pirminis raktas"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Gerai"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Keičiamas duomenų bazės pavadinimas"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Perkrauti duomenų bazę"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopijuojama duomenų bazė"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Keičiama koduotė"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Lentelė turi turėti bent vieną stulpelį"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Lentelės kūrimas"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Įterpti lentelę"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Nerodyti indeksų"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Rodyti indeksus"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Ieškoma"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Slėpti paieškos rezultatus"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Rodyti paieškos rezultatas"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Peržiūrėti"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Šaliname"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Slėpti užklausos laukelį"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Rodyti užklausos laukelį"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nepasirinkti įrašai"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Redaguoti"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Užklausos vykdymo laikas"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1633,100 +1665,100 @@ msgstr "Užklausos vykdymo laikas"
msgid "Save"
msgstr "Išsaugoti"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Slėpti paieškos kriterijų"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Rodyti paieškos kriterijų"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoruoti"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Pridėti stulpelį(-ius)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Pasirinkite siejamą raktą"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Pasirinkti Foreign Key"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pasirinkite laukus peržiūrai"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Pridėti parinktį stulpeliui/skilčiai"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Spustelėkite pažymėjimui"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Generuoti slaptažodį"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generuoti"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Pakeisti slaptažodį"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Daugiau"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1736,27 +1768,27 @@ msgstr ""
"atnaujinimą. Naujausia versija yra %s, išleista %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "naujausias"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Atlikta"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Ankstesnis"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1764,149 +1796,149 @@ msgid "Next"
msgstr "Kitas"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Šiandien"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "sausio"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "vasario"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "kovo"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "balandžio"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Geg"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "birželio"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "liepos"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "rugpjūčio"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "rugsėjo"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "spalio"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "lapkričio"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Grd"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Sekmadienis"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Pirmadienis"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Antradienis"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Trečiadienis"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Ketvirtadienis"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Penktadienis"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Šeštadienis"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1914,84 +1946,84 @@ msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Šeš"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Sk"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Pr"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "An"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Tr"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Kt"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Pn"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Št"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Sav."
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Valanda"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minutė"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekundės"
@@ -2247,8 +2279,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@@ -2392,7 +2424,7 @@ msgstr "padalintas"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Lentelės"
@@ -2470,7 +2502,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Serveris"
@@ -2519,7 +2551,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL užklausa"
@@ -2557,7 +2589,7 @@ msgid "Create PHP Code"
msgstr "PHP kodas"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Atnaujinti"
@@ -2578,7 +2610,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Redaguoti čia"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profiliavimas"
@@ -2683,7 +2715,7 @@ msgstr "Spustelėkite suskleidimui/atskleidimui"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5252,8 +5284,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@@ -5453,7 +5485,7 @@ msgstr "Rūšiuoti pagal raktą"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5517,7 +5549,7 @@ msgid "The row has been deleted"
msgstr "Eilutė buvo ištrinta"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Stabdyti procesą"
@@ -5533,7 +5565,7 @@ msgstr "Rodomi įrašai"
msgid "total"
msgstr "iš viso "
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Užklausa užtruko %01.4f sek."
@@ -5602,7 +5634,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buferio Pool'as"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB būsena"
@@ -5957,8 +5989,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6051,28 +6083,28 @@ msgid "Display MIME types"
msgstr "Rodyti MIME-tipus"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Darbinė stotis"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Atlikimo laikas"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Serverio versija"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP versija"
@@ -6281,52 +6313,52 @@ msgid "Generated by"
msgstr "Sugeneravo"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Eiti į duomenų bazę"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr "Keisti nustatymus %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Eiti į lentelę"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr "Struktūra %s"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Eiti į rodinį (view)"
@@ -6785,14 +6817,14 @@ msgid "Slave status"
msgstr "Pavaldžiojo serverio būklė (Slave status)"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Kintamasis"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Reikšmė"
@@ -6998,7 +7030,7 @@ msgid "Returns"
msgstr "Grąžina"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Laikas"
@@ -7433,12 +7465,12 @@ msgid "Synchronize"
msgstr "Sinchronizuoti"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Dvejetainis log'as"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Kintamieji"
@@ -7491,11 +7523,11 @@ msgstr "Išvalyti"
msgid "Columns"
msgstr "Stulpeliai"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Šios SQL užklausą pasižymėti kaip"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Leisti kitiems vartotojams naudotis šia žyme"
@@ -7914,7 +7946,7 @@ msgstr "Protokolo versija"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Naudotojas"
@@ -8356,17 +8388,17 @@ msgstr "Failo nėra"
msgid "Select binary log to view"
msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Failai"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Trumpinti rodomas užklausas"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Rodyti pilnas užklausas"
@@ -8759,8 +8791,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@@ -8891,7 +8923,7 @@ msgstr ""
"Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo "
"(replication) procese."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Rodyti pagrindinio serverio būklę"
@@ -9042,128 +9074,128 @@ msgstr ""
"Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis "
"(slave). Konfigūruoti!"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Gija %s buvo sėkmingai išjungta."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Užklausų saugykla"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Gijos"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Laikini duomenys"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Užlaikyti įterpimai"
-#: server_status.php:496
+#: server_status.php:541
#, fuzzy
msgid "Key cache"
msgstr "Užklausų saugykla"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Rikiavimas"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Rodyti atidarytas lenteles"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Rodyti pavaldinio būklę"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Veikimo informacija"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Visi būsenos kintamieji"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Atnaujinimo dažnis:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Turintys žodį:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtruoti pagal kategoriją..."
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr "Rodyti nesuformatuotas reikšmes"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Susijusios nuorodos:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Užklausos analizatorius"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Įvadas"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9178,46 +9210,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Adaptuoti paleidimo (pagrindinį) puslapį"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per valandą"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minutę"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per sekundę"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Parametrai"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9225,19 +9257,19 @@ msgstr ""
"Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis "
"serveris dauginimo procese."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo "
"procese."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo "
"procese."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9245,71 +9277,71 @@ msgstr ""
"Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Dauginimo būsena"
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Gauta"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Siųsta"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Daugiausia lygiagrečių prisijungimų"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Nepavykę bandymai"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Nutraukta"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komanda"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio."
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9317,78 +9349,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Kiek laikinųjų failų mysqld sukūrė."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Įvykdytų FLUSH užklausų skaičius."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Vidinių COMMIT užklausų skaičius."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9396,7 +9428,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9404,42 +9436,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Vidinių ROLLBACK užklausų skaičius."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Tuščių puslapių skaičius."
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9447,33 +9479,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9482,227 +9514,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Esamu momentu laukiančių fsync() operacijų skaičius."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Esamu momentu laukiančių skaitymų skaičius."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Esamu momentu laukiančių rašymų skaičius."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Sukurtų puslapių skaičius."
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Puslapių skaitymų skaičius."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Įrašytų puslapių skaičius."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Failų kurie yra atidaryti skaičius."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Lentelių kurios yra atidarytos skaičius."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Podėlio kreipimųsi skaičius."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9710,99 +9742,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Surikiuotų eilučių skaičius."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9810,18 +9842,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9829,57 +9861,57 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Paleisti Monitor"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Instrukcijos/Diegimas"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Pridėti diagramą"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Naujinimo dažnis"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "Diagramos stulpeliai"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr "Diagramos išdėstymas"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr "Atstatyti numatytąsias reikšmes"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Monitor instrukcijos"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9888,7 +9920,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9896,7 +9928,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9908,7 +9940,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9917,85 +9949,79 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU naudojimas"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Pašalinti diagramą"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Atminties naudojimas"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Swap naudojimas"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Būsenos kintamasis(ieji)"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Pasirinkite eiles:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "arba įveskite kintamojo vardą:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Pridėti šią eilę"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Eilės diagramoje:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Registruoti statistiką"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Pasirinktas laiko tarpas:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Užklausos analizatorius"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10004,7 +10030,7 @@ msgstr[0] "Sekundė"
msgstr[1] "Sekundės"
msgstr[2] "Sekundžių"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10400,9 +10426,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -10468,34 +10494,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Naršyti išorines reikšmes"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Įterpto įrašo id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Rodomas PHP kodas"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Rodoma SQL užklausa"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Patikrintas SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Iškilo problemos su `%s` lentelės indeksais"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Nuorodos Antraštė"
@@ -11234,9 +11260,9 @@ msgid "Current amount of Questions: %s"
msgstr "Dabartinis prisijungimas"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Rodyti SQL užklausas"
#: po/advisory_rules.php:16
@@ -11258,7 +11284,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show query box"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Rodyti užklausos laukelį"
#: po/advisory_rules.php:21
@@ -11446,12 +11472,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Vietos naudojimas"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11508,8 +11528,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11616,9 +11636,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Leisti kurti laikinas lenteles."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11636,13 +11656,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Leisti kurti laikinas lenteles."
#: po/advisory_rules.php:113
#, php-format
@@ -11674,7 +11696,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11693,7 +11715,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11716,7 +11738,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11725,7 +11747,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11738,7 +11760,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11747,8 +11769,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11779,11 +11801,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s lentelė"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11810,8 +11829,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s lentelė"
#: po/advisory_rules.php:152
msgid ""
@@ -11852,8 +11874,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Rūšiavimo buferio dydis"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -11873,8 +11897,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Rūšiavimo buferio dydis"
#: po/advisory_rules.php:168
#, php-format
@@ -11882,7 +11908,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11902,7 +11928,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Sukurti lentelę"
#: po/advisory_rules.php:176
@@ -11923,10 +11949,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Rodyti atidarytas lenteles"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Įkelto failo formatas"
#: po/advisory_rules.php:181
msgid ""
@@ -11949,7 +11975,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Įkelto failo formatas"
#: po/advisory_rules.php:186
@@ -11993,7 +12019,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Užklausų saugykla"
#: po/advisory_rules.php:201
@@ -12011,8 +12037,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Sekimas yra neaktyvus."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12069,10 +12097,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Prisijungimai"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Ilgalaikiai sujungimai"
#: po/advisory_rules.php:221
msgid ""
@@ -12095,9 +12123,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Naudoti suspaustą susijungimą"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Ilgalaikiai sujungimai"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12119,7 +12147,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Ilgalaikiai sujungimai"
#: po/advisory_rules.php:231
@@ -12133,8 +12161,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Įkelto failo formatas"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12155,7 +12185,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Įkelto failo formatas"
#: po/advisory_rules.php:243
@@ -12182,8 +12212,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buferio pool'o dydis"
#: po/advisory_rules.php:251
msgid ""
@@ -12293,6 +12325,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Vietos naudojimas"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Rodyti atidarytas lenteles"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Prisijungimai"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Naudoti suspaustą susijungimą"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU naudojimas"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Atminties naudojimas"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Swap naudojimas"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS darbaknygė"
diff --git a/po/lv.po b/po/lv.po
index e68eb67841..562da3ecbd 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Rādīt visu"
@@ -46,7 +46,7 @@ msgstr "Meklēt"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Atslēgas nosaukums"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Apraksts"
@@ -200,7 +200,7 @@ msgstr "Linki uz"
msgid "Comments"
msgstr "Komentāri"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Komentāri"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nē"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Nē"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -363,7 +363,7 @@ msgstr "Relāciju shēma"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -636,8 +636,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -647,7 +647,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Relācijas"
@@ -690,7 +690,7 @@ msgstr "Iezīmēt tabulas ar pārtēriņu"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksports"
@@ -756,10 +756,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -780,7 +780,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Statuss"
@@ -883,8 +883,8 @@ msgstr "Damps tika saglabāts failā %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -920,7 +920,7 @@ msgstr "Ieraksts tika dzēsts."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -968,15 +968,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda ir aizliegta."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Vai Jūs tiešām gribat "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
@@ -1064,12 +1064,12 @@ msgstr "Globālās privilēģijas"
msgid "Removing Selected Users"
msgstr "Dzēst izvēlētos lietotājus"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1077,17 +1077,17 @@ msgstr ""
msgid "Edit"
msgstr "Labot"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Servera izvēle"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL vaicājums"
@@ -1099,13 +1099,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Kopā"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1137,7 +1137,7 @@ msgstr "Servera izvēle"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesi"
@@ -1157,166 +1157,193 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Rindas statistika"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Vaicājuma tips"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Vaicājuma tips"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Vaicājuma tips"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Kopā"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Kopā"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Saņemts"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Konekcijas"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Persiešu"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Datu apmaiņa"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Galvenās relāciju īpašības"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Pārsaukt datubāzi par"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Nav"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1324,385 +1351,385 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Ieslēgts"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Izslēgts"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Galvenās relāciju īpašības"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Galvenās relāciju īpašības"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Importēt failus"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Nav datubāzu"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Rindu skaits vienā lapā"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Kopā"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokāls"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "Pārsaukt datubāzi par"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Eksports"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Atjaunot vaicājumu"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentācija"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentācija"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokāls"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Labi"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Pārsaukt datubāzi par"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Pārsaukt datubāzi par"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopēt datubāzi uz"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kodējums"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Izveidot jaunu lapu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Lietot tabulas"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Pievienot jaunu lauku"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Rādīt režģi"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Meklēt"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL vaicājums"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL vaicājums"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Apskatīt"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Dzēšam %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL vaicājums"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL vaicājums"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Rindas nav iezīmētas"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Labot"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1710,111 +1737,111 @@ msgstr ""
msgid "Save"
msgstr "Saglabāt"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorēt"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Pievienot %s lauku(s)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izvēlieties, kuru lauku rādīt"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Mainīt paroli"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Uzģenerēja"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Mainīt paroli"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "P"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1822,30 +1849,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Nav datubāzu"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nav"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Iepriekšējie"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1853,96 +1880,96 @@ msgid "Next"
msgstr "Nākamie"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kopā"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binārais"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jūn"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jūl"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1950,78 +1977,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sv"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "P"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "O"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pk"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2029,100 +2056,100 @@ msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "S"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sv"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "O"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pk"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "S"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lietošanā"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2377,8 +2404,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2519,7 +2546,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabulas"
@@ -2598,7 +2625,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Serveris"
@@ -2647,7 +2674,7 @@ msgid "Documentation"
msgstr "Dokumentācija"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL vaicājums"
@@ -2685,7 +2712,7 @@ msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Atjaunot"
@@ -2706,7 +2733,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2813,7 +2840,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5387,8 +5414,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5599,7 +5626,7 @@ msgstr "Kārtot pēc atslēgas"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5671,7 +5698,7 @@ msgid "The row has been deleted"
msgstr "Ieraksts tika dzēsts"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Nogalināt"
@@ -5687,7 +5714,7 @@ msgstr "Parādu rindas"
msgid "total"
msgstr "kopā"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Vaicājums ilga %01.4f s"
@@ -5761,7 +5788,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB statuss"
@@ -6106,8 +6133,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6227,28 +6254,28 @@ msgid "Display MIME types"
msgstr "Pieejamie MIME tipi"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Hosts"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Izveidošanas laiks"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Servera versija"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Versija"
@@ -6449,49 +6476,49 @@ msgid "Generated by"
msgstr "Uzģenerēja"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Nav datubāzu"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Tikai struktūra"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6944,14 +6971,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Mainīgais"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Vērtība"
@@ -7167,7 +7194,7 @@ msgid "Returns"
msgstr "Tabulas opcijas"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Laiks"
@@ -7646,12 +7673,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binārais log-fails"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Mainīgie"
@@ -7709,11 +7736,11 @@ msgstr "Kalendārs"
msgid "Columns"
msgstr "Kolonnu nosaukumi"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Saglabāt šo SQL vaicājumu"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
@@ -8156,7 +8183,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Lietotājs"
@@ -8613,18 +8640,18 @@ msgstr "Tabula \"%s\" neeksistē!"
msgid "Select binary log to view"
msgstr "Izvēlieties bināro log-failu apskatei"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Lauki"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Ierobežot parādīto vaicājumu garumu"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Rādīt pilnos vaicājumus"
@@ -9024,13 +9051,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
-"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
-"spārlādēt privilēģijas%s pirms Jūs turpināt."
+"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
+"%spārlādēt privilēģijas%s pirms Jūs turpināt."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -9158,7 +9185,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9297,12 +9324,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Process %s tika veiksmīgi nogalināts."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9310,125 +9337,125 @@ msgstr ""
"phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika "
"izbeigts."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Vaicājuma tips"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Lietot aizturētos INSERT"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Rādīt tabulas"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Izpildes laika informācija"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Atjaunot"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemainīt paroli"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Rādīt tabulas"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Rādīt tabulas"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relācijas"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vaicājuma tips"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funkcija"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9443,131 +9470,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "stundā"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "minūtē"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "sekundē"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Parametrs"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Saņemts"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Nosūtīts"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Neveiksmīgi mēģinājumi"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Pārtraukts"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komanda"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9575,78 +9602,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9654,7 +9681,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9662,42 +9689,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9705,33 +9732,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9740,227 +9767,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9968,99 +9995,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10068,18 +10095,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10087,64 +10114,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "S"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Pievienot jaunu lauku"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Atjaunot"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10153,7 +10180,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10161,7 +10188,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10173,7 +10200,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vaicājuma tips"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10281,7 +10298,7 @@ msgid_plural "%d seconds"
msgstr[0] "sekundē"
msgstr[1] "sekundē"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10696,36 +10713,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Pārlūkot ārējās vērtības"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Pārbaudīt SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problēmas ar indeksiem tabulā `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Nosaukums"
@@ -11524,8 +11541,8 @@ msgid "Current amount of Questions: %s"
msgstr "Konekcijas"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Rādīt pilnos vaicājumus"
#: po/advisory_rules.php:16
@@ -11546,7 +11563,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL vaicājums"
#: po/advisory_rules.php:21
@@ -11726,12 +11743,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Diska vietas lietošana"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11787,8 +11798,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11892,9 +11903,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Ļauj veidot pagaidu tabulas."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11912,13 +11923,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Ļauj veidot pagaidu tabulas."
#: po/advisory_rules.php:113
#, php-format
@@ -11950,7 +11963,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11969,7 +11982,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11992,7 +12005,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12001,7 +12014,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12014,7 +12027,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12023,8 +12036,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12055,10 +12068,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tabula(s)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12085,8 +12096,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tabula(s)"
#: po/advisory_rules.php:152
msgid ""
@@ -12125,7 +12138,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12146,7 +12159,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12155,7 +12168,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12174,7 +12187,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Izveidot jaunu lapu"
#: po/advisory_rules.php:176
@@ -12193,9 +12206,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Rādīt tabulas"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Tabulas kodējums:"
#: po/advisory_rules.php:181
msgid ""
@@ -12217,7 +12230,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Tabulas kodējums:"
#: po/advisory_rules.php:186
@@ -12259,7 +12272,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Vaicājuma tips"
#: po/advisory_rules.php:201
@@ -12277,8 +12290,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "Vaicājuma tips"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12332,9 +12346,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Konekcijas"
#: po/advisory_rules.php:221
@@ -12359,7 +12373,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Konekcijas"
#: po/advisory_rules.php:226
@@ -12382,7 +12396,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Konekcijas"
#: po/advisory_rules.php:231
@@ -12396,8 +12410,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Satura rādītājs"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12418,7 +12434,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Satura rādītājs"
#: po/advisory_rules.php:243
@@ -12443,7 +12459,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12550,6 +12566,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Diska vietas lietošana"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Rādīt tabulas"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Konekcijas"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Konekcijas"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Aizņem"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Aizņem"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/mk.po b/po/mk.po
index 21b5b3a976..0f7847a319 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: \n"
"Language-Team: macedonian_cyrillic \n"
+"Language: mk\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "прикажи ги сите"
@@ -47,7 +47,7 @@ msgstr "Пребарување"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Име на клуч"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Опис"
@@ -201,7 +201,7 @@ msgstr "Врски кон"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Коментари"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Не"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -362,7 +362,7 @@ msgstr "Релациона шема"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -635,8 +635,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -646,7 +646,7 @@ msgstr "Поглед"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Релации"
@@ -689,7 +689,7 @@ msgstr "табели кои имаат пречекорувања"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Извоз"
@@ -751,10 +751,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -774,7 +774,7 @@ msgstr "Ажурирано"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Статус"
@@ -877,8 +877,8 @@ msgstr "Содржината на базата на податоци е сочу
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -914,7 +914,7 @@ msgstr "Маркерот е избришан."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -961,15 +961,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" командата е оневозможена."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Дали навистина сакате да "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
@@ -1057,12 +1057,12 @@ msgstr "Глобални привилегии"
msgid "Removing Selected Users"
msgstr "Избриши ги селектираните корисници"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1070,17 +1070,17 @@ msgstr ""
msgid "Edit"
msgstr "Промени"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Избор на сервер"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL упит"
@@ -1092,13 +1092,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Вкупно"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1130,7 +1130,7 @@ msgstr "Избор на сервер"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
#, fuzzy
msgid "Processes"
msgstr "Листа на процеси"
@@ -1151,170 +1151,197 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Статистики за записите"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Вид на упит"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Вид на упит"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Вид на упит"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Вкупно"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Бафер"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Вкупно"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Слободни страници"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Примено"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Конекции"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Персиски"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Сообраќај"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Општи особини на релациите"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Избриши ја базата на податоци."
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "нема"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1322,384 +1349,384 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Овозможено"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Оневозможено"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Општи особини на релациите"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Општи особини на релациите"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Увоз на податотека"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Базата на податоци не постои"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Број на записи на страница"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Вкупно"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Локален"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "Преименувај ја базата на податоци во"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Извоз"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ажурирај"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Документација"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Документација"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Локален"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
msgid "Processing Request"
msgstr "Листа на процеси"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ОК"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Преименувај ја базата на податоци во"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Преименувај ја базата на податоци во"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Копирај ја базата на податоци во"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кодна страна"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Морате да изберете барем една колона за приказ"
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Направи нова страница"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Користи табели"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Додади ново поле"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Прикажи мрежа"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Пребарување"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL упит"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL упит"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Преглед"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Бришам %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL упит"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL упит"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Нема селектирани записи"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Промени"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1707,110 +1734,110 @@ msgstr ""
msgid "Save"
msgstr "Сочувај"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL упит"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Игнорирај"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Додади %s полиња"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Избери полиња за прикажување"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Генерирање на лозинка"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генерирај"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промена на лозинка"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1818,30 +1845,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Базата на податоци не постои"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "нема"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Претходна"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1849,96 +1876,96 @@ msgid "Next"
msgstr "Следен"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Вкупно"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарен"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "мај"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1946,78 +1973,78 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "дек"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вто"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2025,100 +2052,100 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Саб"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вто"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Саб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2375,8 +2402,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2518,7 +2545,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Табели"
@@ -2597,7 +2624,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сервер"
@@ -2647,7 +2674,7 @@ msgid "Documentation"
msgstr "Документација"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL упит"
@@ -2685,7 +2712,7 @@ msgid "Create PHP Code"
msgstr "Направи PHP код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Освежи"
@@ -2708,7 +2735,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Складишта"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2815,7 +2842,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5400,8 +5427,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5613,7 +5640,7 @@ msgstr "Подредување по клуч"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5685,7 +5712,7 @@ msgid "The row has been deleted"
msgstr "Записот е избришан"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Прекини"
@@ -5701,7 +5728,7 @@ msgstr "Приказ на записи од "
msgid "total"
msgstr "вкупно"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "време на извршување на упитот %01.4f секунди"
@@ -5779,7 +5806,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Бафер"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -6140,8 +6167,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6261,28 +6288,28 @@ msgid "Display MIME types"
msgstr "Достапни MIME-типови"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Време на креирање"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Верзија на серверот"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP верзија"
@@ -6484,49 +6511,49 @@ msgid "Generated by"
msgstr "Генерирал"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL врати празен резултат (нула записи)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Базата на податоци не постои"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Само структура"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6980,14 +7007,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Вредност"
@@ -7202,7 +7229,7 @@ msgid "Returns"
msgstr "Опции на табелата"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Време"
@@ -7686,12 +7713,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Бинарен дневник"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Променливи"
@@ -7749,11 +7776,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имиња на колони"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Запамти SQL упит"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "дади дозвола на секој корисник да пристапува на овој упит."
@@ -8212,7 +8239,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Корисник"
@@ -8675,18 +8702,18 @@ msgstr "Табелата \"%s\" не постои!"
msgid "Select binary log to view"
msgstr "Изберете бинарен дневник за преглед"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Полиња"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Прикажи скратени упити"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Прикажи комплетни упити"
@@ -9091,8 +9118,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "
@@ -9225,7 +9252,7 @@ msgstr "Привилегиите се успешно вчитани."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9364,137 +9391,137 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процесот %s е успешно прекинат."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Вид на упит"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Користи одложен внес"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Прикажи табели"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Информации за работата"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Освежи"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Немој да ја менуваш лозинката"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Прикажи табели"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Прикажи табели"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релации"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Вид на упит"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Функција"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9509,132 +9536,132 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "на час"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "во минута"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "во секунда"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Име"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Примено"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Пратено"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Неуспешни обиди"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Прекинато"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Наредба"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
"еден час."
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9642,78 +9669,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9721,7 +9748,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9729,42 +9756,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9772,33 +9799,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9807,227 +9834,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10035,99 +10062,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10135,18 +10162,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10154,64 +10181,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Саб"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Додади ново поле"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Освежи"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Додади/избриши колона"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10220,7 +10247,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10228,7 +10255,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10240,7 +10267,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10249,98 +10276,88 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Големина"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Избриши ја базата на податоци."
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Големина"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Избери табели"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Додади нов корисник"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL упит"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Статистики за записите"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "избери се"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Вид на упит"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10348,7 +10365,7 @@ msgid_plural "%d seconds"
msgstr[0] "во секунда"
msgstr[1] "во секунда"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10763,36 +10780,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Прегледни ги надворешните вредности"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирање на табелата `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Назив"
@@ -11592,8 +11609,8 @@ msgid "Current amount of Questions: %s"
msgstr "Конекции"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Прикажи комплетни упити"
#: po/advisory_rules.php:16
@@ -11614,7 +11631,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL упит"
#: po/advisory_rules.php:21
@@ -11795,12 +11812,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Големина"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11856,8 +11867,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11962,9 +11973,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Дозволува креирање на привремени табели..."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11982,13 +11993,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Дозволува креирање на привремени табели..."
#: po/advisory_rules.php:113
#, php-format
@@ -12020,7 +12033,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -12039,7 +12052,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12062,7 +12075,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12071,7 +12084,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12084,7 +12097,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12093,8 +12106,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12125,10 +12138,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s табела"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12155,8 +12166,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s табела"
#: po/advisory_rules.php:152
msgid ""
@@ -12197,8 +12210,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Големина на меѓупросторот за подредување"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12218,8 +12233,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Големина на меѓупросторот за подредување"
#: po/advisory_rules.php:168
#, php-format
@@ -12227,7 +12244,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12246,7 +12263,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Направи нова страница"
#: po/advisory_rules.php:176
@@ -12265,9 +12282,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Прикажи табели"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Кодна страна на податотеката:"
#: po/advisory_rules.php:181
msgid ""
@@ -12289,7 +12306,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Кодна страна на податотеката:"
#: po/advisory_rules.php:186
@@ -12331,7 +12348,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Вид на упит"
#: po/advisory_rules.php:201
@@ -12349,8 +12366,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "Вид на упит"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12404,9 +12422,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Конекции"
#: po/advisory_rules.php:221
@@ -12431,7 +12449,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Конекции"
#: po/advisory_rules.php:226
@@ -12454,7 +12472,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Конекции"
#: po/advisory_rules.php:231
@@ -12468,8 +12486,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Содржина"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12490,7 +12510,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Содржина"
#: po/advisory_rules.php:243
@@ -12515,8 +12535,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Големина на баферот"
#: po/advisory_rules.php:251
msgid ""
@@ -12624,6 +12646,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Големина"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Прикажи табели"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Конекции"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Конекции"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Големина"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Големина"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ml.po b/po/ml.po
index e4ead06ca0..e42421f165 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,17 +5,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam \n"
+"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ml\n"
"X-Generator: Translate Toolkit 1.7.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr ""
@@ -45,7 +45,7 @@ msgstr ""
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -86,7 +86,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr ""
@@ -197,7 +197,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -208,12 +208,12 @@ msgstr ""
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr ""
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -229,7 +229,7 @@ msgstr ""
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -350,7 +350,7 @@ msgstr ""
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -606,8 +606,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -617,7 +617,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -659,7 +659,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
@@ -721,10 +721,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -744,7 +744,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr ""
@@ -841,8 +841,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -878,7 +878,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -925,15 +925,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1008,12 +1008,12 @@ msgstr ""
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1021,15 +1021,15 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr ""
@@ -1040,13 +1040,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1076,7 +1076,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1094,154 +1094,178 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr ""
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+msgid "Query cache efficiency"
+msgstr ""
+
+#: js/messages.php:97 po/advisory_rules.php:70
+msgid "Query cache usage"
+msgstr ""
+
+#: js/messages.php:98
+msgid "Query cache used"
+msgstr ""
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr ""
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr ""
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr ""
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr ""
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1249,331 +1273,331 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, php-format
msgid "Set log_output to %s"
msgstr ""
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr ""
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr ""
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr ""
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr ""
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr ""
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr ""
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr ""
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr ""
-#: js/messages.php:185
+#: js/messages.php:192
msgid "Analyse Query"
msgstr ""
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
msgid "Recommendation"
msgstr ""
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
msgid "Justification"
msgstr ""
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr ""
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr ""
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr ""
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr ""
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr ""
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr ""
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr ""
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr ""
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr ""
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr ""
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr ""
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr ""
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1581,98 +1605,98 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr ""
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr ""
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr ""
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr ""
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr ""
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1680,255 +1704,255 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr ""
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr ""
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr ""
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr ""
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr ""
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr ""
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr ""
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr ""
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr ""
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr ""
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr ""
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr ""
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr ""
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr ""
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr ""
@@ -2174,8 +2198,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2309,7 +2333,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr ""
@@ -2384,7 +2408,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr ""
@@ -2433,7 +2457,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr ""
@@ -2471,7 +2495,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2492,7 +2516,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2589,7 +2613,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5024,8 +5048,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5210,7 +5234,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5274,7 +5298,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5290,7 +5314,7 @@ msgstr ""
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5359,7 +5383,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5700,8 +5724,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5794,28 +5818,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr ""
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6004,47 +6028,47 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr ""
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6484,14 +6508,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr ""
@@ -6689,7 +6713,7 @@ msgid "Returns"
msgstr ""
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr ""
@@ -7114,12 +7138,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7172,11 +7196,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7516,7 +7540,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr ""
@@ -7923,17 +7947,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8311,8 +8335,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8432,7 +8456,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8565,122 +8589,122 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr ""
-#: server_status.php:758
+#: server_status.php:800
msgid "Run analyzer"
msgstr ""
-#: server_status.php:759
+#: server_status.php:801
msgid "Instructions"
msgstr ""
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -8695,128 +8719,128 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr ""
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -8824,78 +8848,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -8903,7 +8927,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -8911,42 +8935,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -8954,33 +8978,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -8989,227 +9013,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9217,99 +9241,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9317,18 +9341,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9336,57 +9360,57 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9395,7 +9419,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9403,7 +9427,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9415,7 +9439,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9424,92 +9448,84 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
+#: server_status.php:1513
+msgid "Preset chart"
msgstr ""
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr ""
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr ""
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr ""
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr ""
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -9914,34 +9930,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -10670,8 +10686,7 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -10691,7 +10706,7 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: po/advisory_rules.php:20
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr ""
#: po/advisory_rules.php:21
@@ -10857,10 +10872,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-msgid "memcached usage"
-msgstr ""
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -10915,8 +10926,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11017,8 +11028,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11034,12 +11044,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11070,7 +11080,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11089,7 +11099,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11112,7 +11122,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11121,7 +11131,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11134,7 +11144,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11143,8 +11153,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11175,7 +11185,7 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-msgid "% temp disk tables"
+msgid "Percentage of temp tables on disk"
msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
@@ -11203,7 +11213,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
+msgid "Temp disk rate"
msgstr ""
#: po/advisory_rules.php:152
@@ -11243,7 +11253,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11264,7 +11274,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11273,7 +11283,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11291,7 +11301,7 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:175
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr ""
#: po/advisory_rules.php:176
@@ -11310,8 +11320,7 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, php-format
-msgid "% open files"
+msgid "Percentage of used open files limit"
msgstr ""
#: po/advisory_rules.php:181
@@ -11333,7 +11342,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:185
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr ""
#: po/advisory_rules.php:186
@@ -11372,7 +11381,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11390,7 +11399,7 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
+msgid "Thread cache hit rate %"
msgstr ""
#: po/advisory_rules.php:206
@@ -11445,8 +11454,7 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, php-format
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr ""
#: po/advisory_rules.php:221
@@ -11469,7 +11477,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr ""
#: po/advisory_rules.php:226
@@ -11490,7 +11498,7 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr ""
#: po/advisory_rules.php:231
@@ -11504,7 +11512,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
+msgid "Percentage of aborted clients"
msgstr ""
#: po/advisory_rules.php:236 po/advisory_rules.php:241
@@ -11524,7 +11532,7 @@ msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
#: po/advisory_rules.php:240
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr ""
#: po/advisory_rules.php:243
@@ -11549,7 +11557,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
diff --git a/po/mn.po b/po/mn.po
index e7e5437ad3..30e26d39e9 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Бүгдийг харах"
@@ -45,7 +45,7 @@ msgstr "Хайх"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -86,7 +86,7 @@ msgstr "Түлхүүрийн нэр"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Тайлбар"
@@ -199,7 +199,7 @@ msgstr "Холбоос"
msgid "Comments"
msgstr "Тайлбар"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -210,12 +210,12 @@ msgstr "Тайлбар"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Үгүй"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -231,7 +231,7 @@ msgstr "Үгүй"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -363,7 +363,7 @@ msgstr "Хамааралтай схем"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -636,8 +636,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -647,7 +647,7 @@ msgstr "Харц"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Олшруулалт"
@@ -689,7 +689,7 @@ msgstr "Дээдхийг шалгах"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Гаргах"
@@ -755,10 +755,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -778,7 +778,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Статус"
@@ -876,8 +876,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -913,7 +913,7 @@ msgstr "Тэмдэглэгээ устгагдсан."
msgid "Showing bookmark"
msgstr "Тэмдэглэл харуулах"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Тэмдэглэл %s нь үүсгэгдлээ"
@@ -960,15 +960,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"ӨС устгах\" нь хаалттай."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Та үнэхээр "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
@@ -1057,12 +1057,12 @@ msgstr "Онцгой эрхүүдийг дахин дуудах"
msgid "Removing Selected Users"
msgstr "Сонгогдсон хэрэглэгчдийг хасах"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1070,17 +1070,17 @@ msgstr ""
msgid "Edit"
msgstr "Засах"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Сервэр сонго"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Showing SQL query"
msgid "Live query chart"
@@ -1093,13 +1093,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Нийт"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1131,7 +1131,7 @@ msgstr "Сервэр сонго"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Процессууд"
@@ -1151,172 +1151,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Databases statistics"
msgid "Query statistics"
msgstr "Өгөгдлийн сангийн статистик"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Асуудлын нөөцлөл"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Асуудлын нөөцлөл"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Асуудлын нөөцлөл"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "кБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Нийт"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Буффер Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Нийт"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Чөлөөт хуудсууд"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Ирсэн"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Холболт"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Relations"
msgid "Questions"
msgstr "Хамаарал"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Гуйвуулга"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Байхгүй"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1324,390 +1356,390 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Нээлттэй"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Хаагдсан"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Тайлангийн гарчиг"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "No databases"
msgid "Jump to Log table"
msgstr "ӨС байхгүй"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of fields"
msgid "Sum of grouped rows:"
msgstr "Талбаруудын тоо"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Нийт"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Reload privileges"
msgid "Loading logs"
msgstr "Онцгой эрхүүдийг дахин дуудах"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Да.дууд"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Оруулах"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Update асуулт"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Баримт"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Баримт"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Болих"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Процессууд"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Бэлэн"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Өгөгдлийн сан хуулах нь"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кодлол"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Хүснэгт үүсгэх"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Хүснэгт хэрэглэх"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Шинэ талбар нэмэх"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Тор харуулах"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Хайх"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "in query"
msgid "Hide search results"
msgstr "асуултад"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search results"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Хөтлөх"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "%s-г устгаж байна"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "асуултад"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query box"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Сонгогдсон мөргүй"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Солих"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1715,112 +1747,112 @@ msgstr ""
msgid "Save"
msgstr "Хадгалах"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "асуултад"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Үл тоох"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s талбар(ууд) нэмэх"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Хамаарагдсан түлхүүр сонгох"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Гадаад түлхүүр сонгох"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Харуулах талбарыг соль"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Нууц үг бий болгох"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Бий болгох"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Нууц үг солих"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Да"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1828,31 +1860,31 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "ӨС байхгүй"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Байхгүй"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Өмнөх"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1860,96 +1892,96 @@ msgid "Next"
msgstr "Цааш"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Нийт"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Хоёртын "
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "3-р"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "4-р"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "5-р"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "6-р"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "7-р"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "8-р"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "10р"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1957,78 +1989,78 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "12р"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ня"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Да"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Мя"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ба"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2036,100 +2068,100 @@ msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Бя"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ня"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Да"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Мя"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Лх"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пү"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ба"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Бя"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "хэрэглэгдэж байна"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2387,11 +2419,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
-"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
+"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
+"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2528,7 +2560,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Хүснэгт"
@@ -2612,7 +2644,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сервэр"
@@ -2661,7 +2693,7 @@ msgid "Documentation"
msgstr "Баримт"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-асуулт"
@@ -2699,7 +2731,7 @@ msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Да.дуудах"
@@ -2722,7 +2754,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Хөдөлгүүрүүд"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2829,7 +2861,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5396,12 +5428,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
-"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
-"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
+"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
+"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5621,7 +5653,7 @@ msgstr "Түлхүүрээр эрэмбэлэх"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5691,7 +5723,7 @@ msgid "The row has been deleted"
msgstr "Мөр устгагдсан"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Алах"
@@ -5707,7 +5739,7 @@ msgstr "Мөрүүдийг харуулж байна "
msgid "total"
msgstr "Нийт"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Асуулт нь %01.4f сек авлаа"
@@ -5784,7 +5816,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буффер Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB байдал"
@@ -6140,8 +6172,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6262,28 +6294,28 @@ msgid "Display MIME types"
msgstr "Идэвхтэй MIME-төрлүүд"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Үүссэн цаг"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Сервэрийн хувилбар"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP хувилбар"
@@ -6483,48 +6515,48 @@ msgid "Generated by"
msgstr "Үүсгэгч"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Зөвхөн бүтэц"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6978,14 +7010,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Хувьсагч"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Утга"
@@ -7202,7 +7234,7 @@ msgid "Returns"
msgstr "Хүснэгтийн сонголтууд"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Цаг"
@@ -7691,12 +7723,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Хоёртын log"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Утгууд"
@@ -7751,11 +7783,11 @@ msgstr ""
msgid "Columns"
msgstr "Баганын нэрс"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
@@ -8202,7 +8234,7 @@ msgstr "Протоколын хувилбар"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Хэрэглэгч"
@@ -8663,17 +8695,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!"
msgid "Select binary log to view"
msgstr "Харах хоёртын log сонго"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Файлууд"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Бүтэн асуулт харуулах"
@@ -9064,8 +9096,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@@ -9196,7 +9228,7 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9333,136 +9365,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s нь устгагдав."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Баригч"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Асуудлын нөөцлөл"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Thread-үүд"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Завсрын өгөгдөл"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Давталттай оруулалт"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Түлхүүрийн нөөцлөл"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Нэгдэл"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Эрэмбэлж байна"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Хэлэлцээр зохицуулагч"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Дагавар хостыг харуулах"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Дагавар төлвийг харуулах"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Асуудлын утгыг цэвэрлэх"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Ажиллах үеийн мэдээлэл"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Да.дуудах"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Нууц үгийг солихгүй"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Хамаарал"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Асуултын төрөл"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Мэдээлэл"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9477,115 +9509,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "цагт"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "минутад"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "секундэд"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Баримтжуулал"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Ирсэн"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Илгээгдэв"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "ХИ. давхацсан холболтууд"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Бүтэлгүйтсэн оролдлого"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Таслагдсан"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Команд"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Limits 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:1138
+#: server_status.php:1180
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 "
@@ -9595,16 +9627,16 @@ msgstr ""
"хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд "
"хэрэглэгдэх хэлэлцээрийн тоо."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9616,11 +9648,11 @@ msgstr ""
"оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг "
"нэмэгдүүлэхийг хүсэж байж болно."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9628,7 +9660,7 @@ msgstr ""
"Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн "
"хүснэгтүүдийн тоо."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9636,7 +9668,7 @@ msgstr ""
"Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-"
"аар бичигдсэн мөрүүдийн тоо."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9644,23 +9676,23 @@ msgstr ""
"Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай "
"хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "дотоод COMMIT хэлэлцээриийн тоо."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Хүснэгтээс мөр устгасан тоо."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9670,7 +9702,7 @@ msgstr ""
"NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. "
"Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9680,7 +9712,7 @@ msgstr ""
"бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 "
"FROM foo, энд col1 индекслэгдсэн байна."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9688,7 +9720,7 @@ msgstr ""
"Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны "
"асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9698,7 +9730,7 @@ msgstr ""
"та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд "
"нэмэгдэж байдаг."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9706,7 +9738,7 @@ msgstr ""
"Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь "
"голчлон ORDER BY ... DESC-д хэрэглэгддэг."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9718,7 +9750,7 @@ msgstr ""
"Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд "
"түлхүүрийг зөв ашиглаагүй байх."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9730,35 +9762,35 @@ msgstr ""
"ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь "
"асуудалд зөв бичигдээгүйг илтгэнэ."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Одоогоор бохир байгаа хуудсын тоо."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Чөлөөтэй байгаа хуудсуудын тоо."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9768,7 +9800,7 @@ msgstr ""
"одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас "
"хасагдсан."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9780,11 +9812,11 @@ msgstr ""
"InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт "
"хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9792,7 +9824,7 @@ msgstr ""
"InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй "
"эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9800,11 +9832,11 @@ msgstr ""
"InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн "
"шалгалтыг InnoDB хийснийг илэрхийлнэ."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9812,7 +9844,7 @@ msgstr ""
"InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик "
"уншилтын тоо."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9821,227 +9853,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Уншихаар хүлээгдэж буй тухайн тоо."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Өгөгдөл уншилтийн нийт тоо."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Өгөгдөл бичилтийн нийт тоо."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Тэмдэглэл бичих хүсэлтийн тоо."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Тэмдэглэлийн файл руу бичих хүлээлт."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10049,99 +10081,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Эрэмбэлэгдсэн мөрийн тоо."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10149,18 +10181,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10168,63 +10200,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Шинэ талбар нэмэх"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Да.дуудах"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Багана нэмэх/устгах"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "Мэдээлэл"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10233,7 +10265,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10241,7 +10273,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10253,7 +10285,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Асуултын төрөл"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10364,7 +10386,7 @@ msgid_plural "%d seconds"
msgstr[0] "секундэд"
msgstr[1] "секундэд"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10776,36 +10798,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP кодоор харуулах"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL асуудал харуулах"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL-ийг батлах"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Хаяг"
@@ -11597,8 +11619,7 @@ msgid "Current amount of Questions: %s"
msgstr "ХИ. давхацсан холболтууд"
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -11620,7 +11641,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Асуудлын утгыг цэвэрлэх"
#: po/advisory_rules.php:21
@@ -11805,12 +11826,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Ашиглалтын зай"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11867,8 +11882,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11974,9 +11989,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11994,13 +12009,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
#: po/advisory_rules.php:113
#, php-format
@@ -12032,7 +12049,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -12051,7 +12068,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12074,7 +12091,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12083,7 +12100,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12096,7 +12113,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12105,8 +12122,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12137,10 +12154,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s хүснэгт(үүд)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12167,8 +12182,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s хүснэгт(үүд)"
#: po/advisory_rules.php:152
msgid ""
@@ -12209,8 +12226,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Буфферийн хэмжээг эрэмбэлэх"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12230,8 +12249,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Буфферийн хэмжээг эрэмбэлэх"
#: po/advisory_rules.php:168
#, php-format
@@ -12239,7 +12260,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12259,7 +12280,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Хүснэгт үүсгэх"
#: po/advisory_rules.php:176
@@ -12280,10 +12301,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Нээлттэй хүснэгтүүдийг харуулах"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Оруулсан файлын тогтнол"
#: po/advisory_rules.php:181
msgid ""
@@ -12306,7 +12327,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Оруулсан файлын тогтнол"
#: po/advisory_rules.php:186
@@ -12351,7 +12372,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Түлхүүрийн нөөцлөл"
#: po/advisory_rules.php:201
@@ -12369,8 +12390,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Түлхүүрийн нөөцлөл"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12424,10 +12447,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Холболт"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "ХИ. давхацсан холболтууд"
#: po/advisory_rules.php:221
msgid ""
@@ -12451,7 +12474,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "ХИ. давхацсан холболтууд"
#: po/advisory_rules.php:226
@@ -12474,7 +12497,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "ХИ. давхацсан холболтууд"
#: po/advisory_rules.php:231
@@ -12488,8 +12511,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Оруулсан файлын тогтнол"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12510,7 +12535,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Оруулсан файлын тогтнол"
#: po/advisory_rules.php:243
@@ -12537,8 +12562,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Буффер pool хэмжээ"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12650,6 +12677,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Ашиглалтын зай"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Нээлттэй хүснэгтүүдийг харуулах"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Холболт"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "ХИ. давхацсан холболтууд"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Ашиглалт"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Ашиглалт"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -12814,8 +12865,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
-#~ "s дарж шалгах."
+#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
+#~ "%s дарж шалгах."
#~ msgid "Ignore duplicate rows"
#~ msgstr "Давхардсан мөрүүдийг алгасах"
diff --git a/po/ms.po b/po/ms.po
index 1dca8a0874..f443ee0ef0 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Papar semua"
@@ -43,7 +43,7 @@ msgstr "Cari"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -84,7 +84,7 @@ msgstr "Nama Kekunci"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Keterangan"
@@ -200,7 +200,7 @@ msgstr "Pautan ke"
msgid "Comments"
msgstr "Komen"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Komen"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Tidak"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -365,7 +365,7 @@ msgstr "Skema Hubungan"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -638,8 +638,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -649,7 +649,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -691,7 +691,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
@@ -757,10 +757,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -781,7 +781,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -882,8 +882,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -919,7 +919,7 @@ msgstr "TandaBuku telah dipadam."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -968,15 +968,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Adakah anda ingin "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1056,12 +1056,12 @@ msgstr "Tiada Privilej"
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1069,17 +1069,17 @@ msgstr ""
msgid "Edit"
msgstr "Ubah"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Pilihan Pelayan"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "kueri-SQL"
@@ -1091,13 +1091,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Jumlah"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1129,7 +1129,7 @@ msgstr "Pilihan Pelayan"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Proses-proses"
@@ -1149,165 +1149,192 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Statistik Baris"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Jenis Kueri"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Jenis Kueri"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Jenis Kueri"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Jumlah"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Jumlah"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "DiTerima"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Hubungan"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Operasi"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Kesibukan"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Ciri-ciri hubungan am"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
msgid "Remove chart"
msgstr "Tukarnama jadual ke"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Tiada"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1315,378 +1342,378 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Tidak Membenarkan"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Ciri-ciri hubungan am"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Ciri-ciri hubungan am"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
msgid "Chart Title"
msgstr "Tiada Jadual"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Tiada pangkalan data"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Bilangan baris per halaman"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Jumlah"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Local"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
msgid "Reload page"
msgstr "Tukarnama jadual ke"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Eksport"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Kemaskini Kueri"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentasi"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentasi"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Proses-proses"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
msgid "Renaming Databases"
msgstr "Tukarnama jadual ke"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
msgid "Reload Database"
msgstr "Tukarnama jadual ke"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "Tiada pangkalan data"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Cipta Halaman baru"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Guna Jadual"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indeks"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Papar grid"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Cari"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "kueri-SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "kueri-SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Lungsur"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "Padam"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "kueri-SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "kueri-SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Ubah"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1694,110 +1721,110 @@ msgstr ""
msgid "Save"
msgstr "Simpan"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Abai"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "Tambah medan baru"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Pilih Medan untuk dipapar"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Dijana oleh"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Isn"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1805,30 +1832,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Tiada pangkalan data"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Tiada"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Terdahulu"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1836,96 +1863,96 @@ msgid "Next"
msgstr "Berikut"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mac"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mei"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ogos"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1933,78 +1960,78 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dis"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Aha"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Isn"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sel"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2012,100 +2039,100 @@ msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Aha"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Isn"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sel"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rab"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kha"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2355,8 +2382,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2491,7 +2518,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Jadual-jadual"
@@ -2569,7 +2596,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Pelayan"
@@ -2618,7 +2645,7 @@ msgid "Documentation"
msgstr "Dokumentasi"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "kueri-SQL"
@@ -2656,7 +2683,7 @@ msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2677,7 +2704,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2782,7 +2809,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5334,8 +5361,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5544,7 +5571,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5616,7 +5643,7 @@ msgid "The row has been deleted"
msgstr "Baris telah dipadam"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Bunuh"
@@ -5632,7 +5659,7 @@ msgstr "Papar baris"
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5706,7 +5733,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -6050,8 +6077,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6161,28 +6188,28 @@ msgid "Display MIME types"
msgstr "Paparkan Ciri-ciri"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Hos"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Masa dijana"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versi Pelayan"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versi PHP"
@@ -6378,49 +6405,49 @@ msgid "Generated by"
msgstr "Dijana oleh"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)"
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Tiada pangkalan data"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Struktur sahaja"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6867,14 +6894,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Pembolehubah"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Nilai"
@@ -7088,7 +7115,7 @@ msgid "Returns"
msgstr "Statistik pangkalan data"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Masa"
@@ -7555,13 +7582,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Binari"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Pemboleh-pembolehubah"
@@ -7618,11 +7645,11 @@ msgstr ""
msgid "Columns"
msgstr "Nama Kolum"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "andabuku kueri-SQL ini"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -8004,7 +8031,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Pengguna"
@@ -8455,18 +8482,18 @@ msgstr "Jadual \"%s\" tidak wujud!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Medan"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8857,8 +8884,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8982,7 +9009,7 @@ msgstr "Bebenang %s telah berjaya dimatikan."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9121,135 +9148,135 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Bebenang %s telah berjaya dimatikan."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Jenis Kueri"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Penyelitan Lanjutan"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Papar jadual"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informasi MasaJana"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "Dijana oleh"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Jangan tukar katalaluan"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Papar jadual"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Papar jadual"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
msgid "Related links:"
msgstr "Operasi"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Jenis Kueri"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Fungsi"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9264,130 +9291,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per jam"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Penyataan"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "DiTerima"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Hantar"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Percubaan Gagal"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "DiBatalkan"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Arahan"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9395,78 +9422,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9474,7 +9501,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9482,42 +9509,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9525,33 +9552,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9560,227 +9587,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9788,99 +9815,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9888,18 +9915,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9907,63 +9934,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sab"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "Tambah medan baru"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Dijana oleh"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Tambah/Padam Kolum Medan"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9972,7 +9999,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9980,7 +10007,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9992,7 +10019,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Jenis Kueri"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Records"
msgid "%d second"
@@ -10100,7 +10116,7 @@ msgid_plural "%d seconds"
msgstr[0] "Rekod"
msgstr[1] "Rekod"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10515,36 +10531,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Mengesahkan SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Label"
@@ -11326,8 +11342,8 @@ msgid "Current amount of Questions: %s"
msgstr "Hubungan"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "kueri-SQL"
#: po/advisory_rules.php:16
@@ -11348,7 +11364,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "kueri-SQL"
#: po/advisory_rules.php:21
@@ -11524,12 +11540,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Penggunaan ruang"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11585,8 +11595,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11691,8 +11701,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11708,12 +11717,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11746,7 +11755,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11765,7 +11774,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11788,7 +11797,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11797,7 +11806,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11810,7 +11819,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11819,8 +11828,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11851,10 +11860,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s jadual"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11881,8 +11888,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s jadual"
#: po/advisory_rules.php:152
msgid ""
@@ -11921,7 +11930,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11942,7 +11951,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11951,7 +11960,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11970,7 +11979,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Cipta Halaman baru"
#: po/advisory_rules.php:176
@@ -11989,9 +11998,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Papar jadual"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Fail bagi set Aksara:"
#: po/advisory_rules.php:181
msgid ""
@@ -12013,7 +12022,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Fail bagi set Aksara:"
#: po/advisory_rules.php:186
@@ -12055,7 +12064,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Jenis Kueri"
#: po/advisory_rules.php:201
@@ -12073,8 +12082,9 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+msgid "Thread cache hit rate %"
+msgstr "Jenis Kueri"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12128,9 +12138,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Hubungan"
#: po/advisory_rules.php:221
@@ -12155,7 +12165,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Hubungan"
#: po/advisory_rules.php:226
@@ -12178,7 +12188,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Hubungan"
#: po/advisory_rules.php:231
@@ -12192,8 +12202,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Kandungan"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12214,7 +12226,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Kandungan"
#: po/advisory_rules.php:243
@@ -12239,7 +12251,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12346,6 +12358,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Penggunaan ruang"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Papar jadual"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Hubungan"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Hubungan"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Penggunaan"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Penggunaan"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/nb.po b/po/nb.po
index 4cf739d25c..186266c734 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
+"Language: nb\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Vis alle"
@@ -46,7 +46,7 @@ msgstr "Søk"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Nøkkel"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Beskrivelse"
@@ -200,7 +200,7 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Kommentarer"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nei"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Nei"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -354,7 +354,7 @@ msgstr "Rediger eller eksporter relasjonsskjema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -615,8 +615,8 @@ msgstr "Overvåkning er ikke aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -626,7 +626,7 @@ msgstr "Vis"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikering"
@@ -668,7 +668,7 @@ msgstr "Merk overheng"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporter"
@@ -736,10 +736,10 @@ msgstr "Overvåkede tabeller"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -759,7 +759,7 @@ msgstr "Oppdatert"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -859,8 +859,8 @@ msgstr "Dump har blitt lagret til fila %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@@ -904,7 +904,7 @@ msgstr "Bokmerket har blitt slettet."
msgid "Showing bookmark"
msgstr "Vis bokmerke"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmerke %s opprettet"
@@ -956,15 +956,15 @@ msgstr "Klikk for å velge"
msgid "Click to unselect"
msgstr "Klikk for å fjerne valg"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\"-uttrykk er avslått."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Vil du virkelig "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Du er i ferd med å SLETTE en komplett database!"
@@ -1048,12 +1048,12 @@ msgstr "Oppfrisker privilegiene"
msgid "Removing Selected Users"
msgstr "Fjern valgte brukere"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Lukk"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1061,17 +1061,17 @@ msgstr "Lukk"
msgid "Edit"
msgstr "Rediger"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Tjenervalg"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show query box"
msgid "Live query chart"
@@ -1084,13 +1084,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Totalt"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1122,7 +1122,7 @@ msgstr "Tjenervalg"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Prosesser"
@@ -1142,170 +1142,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Spørringsstatistikk"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Kunne ikke lagre konfigurasjonen"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Spørringsmellomlager"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Spørringsmellomlager"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Spørringsmellomlager"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Antall loggfiler"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Mellomlager"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Totalt"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Ledige sider"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Mottatt"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "tilkoblinger"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versjoner"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafikk"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Iinnstillinger"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Fjern database"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Lås til ruter"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Ingen"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1313,378 +1345,378 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
msgstr "Lagre utdata til fil"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Påslått"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Avslått"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "Endre dine innstillinger"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "Flere innstillinger"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Rapporttittel"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Differanse"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Gå til database"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filter"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Antall innsettingsrader"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Totalt"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Laster"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Oppdater"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importer"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Oppdater spørring"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentasjon"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Detaljer..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Godkjenning"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Avbryt"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Laster"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Prosessforespørsel"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Feil i prosesseringsforespørsel"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Dropper kolonne"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Legger til primærnøkkel"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Endrer databasenes navn"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Gjennlast database"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopierer database"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Endrer tegnsett"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabellen må ha minst en kolonne"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Opprett tabell"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Bruk tabeller"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
msgstr "Utfør indeks(er)"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Vis rutenett"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Søker"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
msgstr "Skjul søkekriterier"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
msgstr "Vis søkekriterier"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Se på"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Sletter %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Skjul spørringsboks"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Vis spørringsboks"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Ingen rader valgt"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Endre"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maks kjøretid"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1692,102 +1724,102 @@ msgstr "Maks kjøretid"
msgid "Save"
msgstr "Lagre"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Skjul søkekriterier"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Vis søkekriterier"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Legg til kolonne(r)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Velg referert nøkkel"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Velg fremmednøkkel"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Velg primærnøkkelen eller en unik nøkkel"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Velg kolonne for visning"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Legg til valg for kolonne"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Klikk for å velge"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Generer passord"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Endre passord"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Mer"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1797,29 +1829,29 @@ msgstr ""
"versjon er %s, utgitt den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", siste tilgjengelige versjon:"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Gå til database"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Utført"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Forrige"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1827,149 +1859,149 @@ msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "I dag"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Januar"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Februar"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Mars"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "April"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Juni"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Juli"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "August"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "September"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "November"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Des"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Søndag"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Mandag"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Tirsdag"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1977,84 +2009,84 @@ msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Uke"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Time"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minutt"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekund"
@@ -2320,8 +2352,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@@ -2466,7 +2498,7 @@ msgstr "delt"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabeller"
@@ -2545,7 +2577,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Tjener"
@@ -2594,7 +2626,7 @@ msgid "Documentation"
msgstr "Dokumentasjon"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-spørring"
@@ -2632,7 +2664,7 @@ msgid "Create PHP Code"
msgstr "Lag PHP kode"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Oppdater"
@@ -2653,7 +2685,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilering"
@@ -2762,7 +2794,7 @@ msgstr "Klikk for å velge"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5406,8 +5438,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@@ -5631,7 +5663,7 @@ msgstr "Sorter etter nøkkel"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5699,7 +5731,7 @@ msgid "The row has been deleted"
msgstr "Raden er slettet"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Avslutt"
@@ -5715,7 +5747,7 @@ msgstr "Viser rader "
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Spørring tok %01.4f sek"
@@ -5792,7 +5824,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mellomlager"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6185,8 +6217,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6295,28 +6327,28 @@ msgid "Display MIME types"
msgstr "Vis MIME-typer"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Vert"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Generert den"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Tjenerversjon"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP-Versjon"
@@ -6516,56 +6548,56 @@ msgid "Generated by"
msgstr "Generert av"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Vis en strukturs innhold ved å klikke på dens navn"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Endre noen av dens innstillinger ved å klikke på den tilhørende "
"\"Innstillinger\" link"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Endre dens struktur ved å følge \"Struktur\" linken"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Gå til database"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Mangler data for %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Gå til tabell"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Kun struktur"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Gå til visning"
@@ -7028,14 +7060,14 @@ msgid "Slave status"
msgstr "Slavestatus"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variabler"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Verdi"
@@ -7259,7 +7291,7 @@ msgid "Returns"
msgstr "Returtype"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tid"
@@ -7752,12 +7784,12 @@ msgid "Synchronize"
msgstr "Synkroniser"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binærlogg"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variabler"
@@ -7810,11 +7842,11 @@ msgstr "Fjern"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Lagre denne SQL-spørringen"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "La alle brukere ha adgang til dette bokmerket"
@@ -7960,8 +7992,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
-"stransformasjonsbeskrivelser%s"
+"For en liste over tilgjengelige transformasjonsvalg, klikk på "
+"%stransformasjonsbeskrivelser%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@@ -8231,7 +8263,7 @@ msgstr "Protokollversjon"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Bruker"
@@ -8724,17 +8756,17 @@ msgstr "Tabellen %s eksisterer ikke!"
msgid "Select binary log to view"
msgstr "Velg binærlogg for visning"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Forkort vist spørring"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Vis hele spørringen"
@@ -9124,8 +9156,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
@@ -9255,7 +9287,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Vis masterstatus"
@@ -9410,138 +9442,138 @@ msgstr ""
"Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. "
"Ønsker du å konfigurere den?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråd %s ble avsluttet med suksess."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Handler"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Spørringsmellomlager"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Tråder"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Forsinkede innsettinger"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Nøkkelmellomlager"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Sammenføyninger"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaksjonskoordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Vis åpne tabeller"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Vis slaveverter"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Kjøringsinformasjon"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Se slavestatustabell"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Oppdater"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ikke endre passordet"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Vis åpne tabeller"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Vis åpne tabeller"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relasjoner"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Spørringstype"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Informasjon"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9556,46 +9588,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Endre oppstartssiden"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per time"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minutt"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per sekund"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Oversikt"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9603,19 +9635,19 @@ msgstr ""
"Denne tjeneren jobber både som tjener og slave i "
"replikasjonsprosessen."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denne tjeneren er konfigurert som tjener i en replikasjons"
"b>prosess."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denne tjeneren er konfigurert som slave i en replikasjons"
"b>prosess."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9623,11 +9655,11 @@ msgstr ""
"For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Replikasjonsstatus"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9635,47 +9667,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Mottatt"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "maks. samtidige tilkoblinger"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Feilede forsøk"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Avbrutt"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Kommando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9685,17 +9717,17 @@ msgstr ""
"som overskred verdien av binlog_size og brukte en midlertidig fil for å "
"lagre spørringer fra transaksjonen."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9707,11 +9739,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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Antall midlertidige filer mysqld har opprettet."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9719,7 +9751,7 @@ msgstr ""
"Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under "
"utføriing av spørringer."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9727,7 +9759,7 @@ msgstr ""
"Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil "
"oppstod (mest sannsynlig duplisert nøkkel)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9735,23 +9767,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Antall INSERT DELAYED rader skrevet."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Antall utførte FLUSH uttrykk."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Antall interne COMMIT uttrykk."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9761,7 +9793,7 @@ msgstr ""
"tabell med et gitt navn. Dette blir kalt oppdaging (discovery). "
"Handler_discover indikerer antall ganger tabeller har blitt oppdaget."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9771,7 +9803,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:1152
+#: server_status.php:1194
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."
@@ -9780,7 +9812,7 @@ msgstr ""
"er høyt gir dette en god indikasjon på at dine spørringer og tabeller er "
"riktig indeksert."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9791,7 +9823,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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9799,7 +9831,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:1155
+#: server_status.php:1197
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 "
@@ -9811,7 +9843,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:1156
+#: server_status.php:1198
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 "
@@ -9823,37 +9855,37 @@ msgstr ""
"tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for "
"å utnytte de indeksene du har."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Antall interne ROLLBACK kommandoer."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antall sider som inneholder data (endret eller uendret)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Antall sider for tiden endret."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Antall tomme sider."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9862,7 +9894,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:1165
+#: server_status.php:1207
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 "
@@ -9874,11 +9906,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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Total størrelse på midlertidig mellomlager i sider."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9886,7 +9918,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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9894,11 +9926,11 @@ msgstr ""
"Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB "
"utfører en sekvensiell full tabellskanning."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Antall logiske leseforespørsler InnoDB har utført."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9906,7 +9938,7 @@ msgstr ""
"Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra "
"mellomlageret og måtte utføre en enkelsidelesnining."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9920,55 +9952,55 @@ msgstr ""
"telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt "
"innstilt så vil denne verdien være liten."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Antall fsync() operasjoner så langt."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Antall ventende fsync() operasjoner."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Antall ventende lesinger."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Antall ventende skrivinger."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Mengden data lest så langt, i bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Antall utførte lesninger."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Antall utførte skrivinger."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Mengden data skrevet så langt, i bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9976,35 +10008,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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Antall loggskrivingsforespørsler."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Antall fysiske skrivinger til loggfila."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Antall fsync-skrivinger utført på loggfila."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Antall ventende loggfil-fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Ventende loggfilskrivinger."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Antall bytes skrevet til loggfila."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Antall sider opprettet."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10012,51 +10044,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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Antall sidelesninger."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Antall sideskrivinger."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Antall ventende radlåsinger."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Total tid brukt for å få radlåsinger, i millisekunder."
-#: server_status.php:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antall rader slettet fra InnoDB tabeller."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antall rader satt inn i InnoDB tabeller."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Antall rader lest fra InnoDB tabeller."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Antall rader oppdatert i InnoDB tabeller."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10065,7 +10097,7 @@ msgstr ""
"ennå har blitt skrevet til harddisken. Dette var tidligere kjent som "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10073,7 +10105,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:1205
+#: server_status.php:1247
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 "
@@ -10082,11 +10114,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10096,15 +10128,15 @@ msgstr ""
"stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan "
"kalkuleres med Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10115,17 +10147,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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10133,38 +10165,38 @@ msgstr ""
"Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din "
"tabellmellomlagerverdi for liten."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Antall åpne filer."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Antall åpne tabeller."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Mengden ledig minne i spørringsmellomlager."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Antall mellomlagertreff."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Antall spørringer lagt til i mellomlageret."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10177,7 +10209,7 @@ msgstr ""
"og sist brukt (least recently used (LRU)) strategi for å finne hvilke "
"spørringer som skal fjernes fra mellomlageret."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10185,19 +10217,19 @@ msgstr ""
"Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. "
"query_cache_type innstillingen)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Antall spørringer registrert i mellomlageret."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Totale antall blokker i spørringsmellomlageret."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10205,11 +10237,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10217,7 +10249,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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10225,15 +10257,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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10241,12 +10273,12 @@ msgstr ""
"Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har "
"gjentatt transaksjoner."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10254,12 +10286,12 @@ msgstr ""
"Antall tråder som har brukt mer enn slow_launch_time sekunder under "
"opprettelse."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10269,24 +10301,24 @@ msgstr ""
"denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size "
"systemvariabelen."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Antall sorteringer som ble utført med rekkefølger."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Antall sorterte rader."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10298,7 +10330,7 @@ msgstr ""
"først optimalisere dine spørringer, og deretter enten splitte din tabell "
"eller tabeller eller bruke replikasjon."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10308,11 +10340,11 @@ msgstr ""
"Threads_created/Connections. Hvis denne verdien er rød bør du øke din "
"thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Antall åpne tilkoblinger."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10323,69 +10355,69 @@ 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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Antall tråder som ikke sover."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Start Monitor"
msgstr "CHAR textarea rader"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Utfør indeks(er)"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Oppdater"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR textarea kolonner"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Feilbehandling:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Gjennopprett standard verdi"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "Informasjon"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10394,7 +10426,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10402,7 +10434,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10414,7 +10446,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10423,105 +10455,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Bruk"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Fjern database"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Bruk"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Se slavestatustabell"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Velg tabeller"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Ugylding tabellnavn"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Legg til en ny tjener"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL spørringer"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Vis statistikk"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Velg side"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Spørringstype"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10529,7 +10551,7 @@ msgid_plural "%d seconds"
msgstr[0] "Sekund"
msgstr[1] "Sekund"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10960,8 +10982,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
-"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
+"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@@ -10972,9 +10994,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11045,34 +11067,34 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn"
msgid "Browse foreign values"
msgstr "Se de eksterne verdiene"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Insatt rad id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Viser som PHP kode"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Viser SQL spørring"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Validert SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene i tabellen `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Navn"
@@ -11871,9 +11893,9 @@ msgid "Current amount of Questions: %s"
msgstr "Nåværende tilkobling"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Vis SQL spørringer"
#: po/advisory_rules.php:16
@@ -11895,7 +11917,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Flush query cache"
#: po/advisory_rules.php:21
@@ -12080,12 +12102,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Plassbruk"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12142,8 +12158,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12252,9 +12268,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Tillater oppretting av midlertidige tabeller."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12272,13 +12288,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Tillater oppretting av midlertidige tabeller."
#: po/advisory_rules.php:113
#, php-format
@@ -12310,8 +12328,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "Det er ingen filer å laste opp"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12331,7 +12351,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12354,7 +12374,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12363,7 +12383,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12376,7 +12396,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12385,8 +12405,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12417,11 +12437,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabell"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12448,8 +12465,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabell"
#: po/advisory_rules.php:152
msgid ""
@@ -12490,8 +12510,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sorteringsbufferstørrelse"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12511,8 +12533,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sorteringsbufferstørrelse"
#: po/advisory_rules.php:168
#, php-format
@@ -12520,7 +12544,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12540,7 +12564,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Opprett tabell"
#: po/advisory_rules.php:176
@@ -12561,10 +12585,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Vis åpne tabeller"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Importfilformat"
#: po/advisory_rules.php:181
msgid ""
@@ -12587,7 +12611,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Importfilformat"
#: po/advisory_rules.php:186
@@ -12634,7 +12658,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Nøkkelmellomlager"
#: po/advisory_rules.php:201
@@ -12652,8 +12676,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Overvåkning er ikke aktiv."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12711,10 +12737,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "tilkoblinger"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Vedvarende forbindelser"
#: po/advisory_rules.php:221
msgid ""
@@ -12737,9 +12763,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Komprimer tilkobling"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Vedvarende forbindelser"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12761,7 +12787,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Vedvarende forbindelser"
#: po/advisory_rules.php:231
@@ -12775,8 +12801,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Importfilformat"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12797,7 +12825,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Importfilformat"
#: po/advisory_rules.php:243
@@ -12824,8 +12852,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Mellomlagerstørrelse"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12937,6 +12967,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Plassbruk"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Vis åpne tabeller"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "tilkoblinger"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Komprimer tilkobling"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Bruk"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Bruk"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/nl.po b/po/nl.po
index 085cda63f4..bd25c3d144 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
+"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Toon alles"
@@ -46,7 +46,7 @@ msgstr "Zoeken"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Sleutelnaam"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Beschrijving"
@@ -200,7 +200,7 @@ msgstr "Verwijst naar"
msgid "Comments"
msgstr "Opmerkingen"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Opmerkingen"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nee"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Nee"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -355,7 +355,7 @@ msgstr "Bewerk of exporteer relationeel schema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -616,8 +616,8 @@ msgstr "Tracking is niet actief."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@@ -628,7 +628,7 @@ msgstr "View"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replicatie"
@@ -670,7 +670,7 @@ msgstr "Selecteer tabellen met overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporteer"
@@ -732,10 +732,10 @@ msgstr "Tabellen met tracker"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -755,7 +755,7 @@ msgstr "Bijgewerkt"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -856,11 +856,11 @@ msgstr "Dump is bewaard als %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
-"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
+"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
+"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -904,7 +904,7 @@ msgstr "De boekenlegger (Bookmark) is verwijderd."
msgid "Showing bookmark"
msgstr "Toon bookmark"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s aangemaakt"
@@ -958,15 +958,15 @@ msgstr "Klik om te selecteren"
msgid "Click to unselect"
msgstr "Klik om te de-selecteren"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Weet u zeker dat u dit wilt "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "U staat op het punt een volledige database te VERWIJDEREN!"
@@ -1043,12 +1043,12 @@ msgstr "Bezig de privileges te verversen"
msgid "Removing Selected Users"
msgstr "Geselecteerde gebruikers worden verwijderd"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Sluiten"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1056,17 +1056,17 @@ msgstr "Sluiten"
msgid "Edit"
msgstr "Wijzig"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Serverkeuze"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
@@ -1079,13 +1079,13 @@ msgstr "Statische data"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Totaal"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Andere"
@@ -1117,7 +1117,7 @@ msgstr "Serverkeuze"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processen"
@@ -1137,170 +1137,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Toon statistieken"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Opslaan van het configuratiebestand is niet mogelijk"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Query cache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Query cache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Query cache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total count"
msgid "Total memory"
msgstr "Totaal aantal"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Totaal"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Vrije pages"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Ontvangen"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Connecties"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versies"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Verkeer"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Instellingen"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Verwijder database"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Kleef aan raster"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Geen"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1308,370 +1340,370 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
msgstr "Opslaan als bestand"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Ingeschakeld"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Uitgeschakeld"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "Beheer uw instellingen"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "Overige instellingen"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title:"
msgid "Chart Title"
msgstr "Report titel:"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Verschil"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Ga naar database"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filter"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Aantal ingevoegde rijen"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Totaal"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Laden"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Verversen"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importeer"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Wijzig Query"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentatie"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Details..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Authenticatie"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Annuleren"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Laden"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Bezig met verwerken"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Fout tijdens het verwerken van de opdracht"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Kolom komt te vervallen"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Primaire sleutel wordt toegevoegd"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Correct"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Database hernoemen"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Ververs database"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Database kopiëren"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Karakterset aanpassen"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabel moet minimaal één kolom hebben"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Maak tabel"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Tabel toevoegen"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "Voeg index toe"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Toon raster"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Zoeken"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Verberg zoekresultaten"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Toon zoekresultaten"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Verkennen"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Verwijderen"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "SQL-query veld verbergen"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "SQL-query veld tonen"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Geen rijen geselecteerd"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Veranderen"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maximale uitvoertijd"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1679,42 +1711,42 @@ msgstr "Maximale uitvoertijd"
msgid "Save"
msgstr "Opslaan"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Verberg zoekcriteria"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Toon zoek-criteria"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Negeer"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Voeg kolom toe"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Selecteer de gerefereerde sleutel"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Selecteer vreemde sleutel"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Selecteer de primaire sleutel of een unieke sleutel"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Kies weer te geven veld"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1722,59 +1754,59 @@ msgstr ""
"U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u "
"deze niet opslaat. Wilt u doorgaan?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Voeg een optie toe voor komom "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Klik om te sorteren"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Klik om te markeren/demarkeren"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Genereer wachtwoord"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genereer"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Wijzig wachtwoord"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Meer"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1784,27 +1816,27 @@ msgstr ""
"overwegen. De nieuwe versie is %s, uitgebracht op %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", meest recente versie:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "Recent bijgewerkt"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Klaar"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorige"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1812,149 +1844,149 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Vandaag"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "januari"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "februari"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "maart"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "april"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "mei"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "juni"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "juli"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "augustus"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "september"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "november"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "zondag"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "maandag"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "dinsdag"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "woensdag"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "donderdag"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "vrijdag"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "zaterdag"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1962,84 +1994,84 @@ msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "za"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "zo"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "di"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "wo"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "do"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "vr"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "za"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Week"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Uur"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuut"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Seconde"
@@ -2301,8 +2333,8 @@ msgstr "Welkom op %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@@ -2450,7 +2482,7 @@ msgstr "gedeeld"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabellen"
@@ -2530,7 +2562,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2579,7 +2611,7 @@ msgid "Documentation"
msgstr "Documentatie"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-query"
@@ -2617,7 +2649,7 @@ msgid "Create PHP Code"
msgstr "Genereer PHP-Code"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Vernieuw"
@@ -2640,7 +2672,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Rechtstreeks"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profiling"
@@ -2749,7 +2781,7 @@ msgstr "Klik om te selecteren"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5408,13 +5440,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
-"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
-"$s voor meer details."
+"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
+"%5$s voor meer details."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5621,7 +5653,7 @@ msgstr "Sorteren op sleutel"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5685,7 +5717,7 @@ msgid "The row has been deleted"
msgstr "De rij is verwijderd"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "stop proces"
@@ -5701,7 +5733,7 @@ msgstr "Toon Records"
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query duurde %01.4f sec"
@@ -5776,7 +5808,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6183,11 +6215,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
-"sPrimeBase XT home pagina%s."
+"Documentatie en meer informatie over PBXT kan gevonden worden op de "
+"%sPrimeBase XT home pagina%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6279,28 +6311,28 @@ msgid "Display MIME types"
msgstr "Toon beschikbare MIME-types"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Machine"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Genereertijd"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Serverversie"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP-Versie"
@@ -6516,53 +6548,53 @@ msgid "Generated by"
msgstr "Gegenereerd door"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gaf een lege resultaat set terug (0 rijen)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "De inhoud van een structuur bekijken door er op te klikken"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Een instelling veranderen door op \"Opties\" te klikken"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Ga naar database"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Ontbrekende data voor %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Ga naar tabel"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Alleen structuur"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Ga naar view"
@@ -7024,14 +7056,14 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variabelen"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Waarde"
@@ -7255,7 +7287,7 @@ msgid "Returns"
msgstr "Retour type"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tijd"
@@ -7742,12 +7774,12 @@ msgid "Synchronize"
msgstr "Synchronizatie"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binaire log"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variabelen"
@@ -7800,11 +7832,11 @@ msgstr "Clear"
msgid "Columns"
msgstr "Kolommen"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Sla deze SQL-query op"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Geef elke gebruiker toegang tot deze bookmark"
@@ -8222,7 +8254,7 @@ msgstr "Protocolversie"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Gebruiker"
@@ -8676,17 +8708,17 @@ msgstr "Bestand bestaat niet"
msgid "Select binary log to view"
msgstr "Selecteer de te bekijken binaire log"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Bestanden"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Getoonde queries afkappen"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Toon volledige Queries"
@@ -9088,8 +9120,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL "
"privileges tabel. De content van deze tabel kan verschillen met de rechten "
@@ -9222,7 +9254,7 @@ msgstr "Master server succesvol gewijzigd in %s"
msgid "This server is configured as master in a replication process."
msgstr "Deze server is ingesteld als master in een replicatie proces."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Toon master status"
@@ -9372,12 +9404,12 @@ msgstr ""
"Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit "
"nu instellen?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s is succesvol afgesloten."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9385,125 +9417,125 @@ msgstr ""
"phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het "
"al gesloten."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Handler"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Threads"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Tijdelijke data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Vertraagde inserts"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Sleutelcache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Joins"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transactie coördinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Schoon (sluit) alle tabellen"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Toon open tabellen"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Toon slave hosts"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Toon slave status"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Schoon query cache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Runtime-informatie"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "alle status variabelen"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Vernieuw"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Wijzig het wachtwoord niet"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Toon open tabellen"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Toon open tabellen"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Gerelateerde links"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Query-type"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Inleiding"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9518,46 +9550,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Aanpassen beginpagina"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per uur"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minuut"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per seconde"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Opdrachten"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9565,13 +9597,13 @@ msgstr ""
"Deze MySQL server is ingesteld als master en slave in een "
"replicatie proces."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Deze MySQL server is ingesteld als master in een replicatie "
"proces."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Deze MySQL server is ingesteld als slave in een replicatie "
@@ -9580,7 +9612,7 @@ msgstr ""
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
# "Deze MySQL-server functioneert als %s in een replicatie proces."
# weggehaald.
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9588,11 +9620,11 @@ msgstr ""
"Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Replicatie status"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9600,47 +9632,47 @@ msgstr ""
"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor "
"kunnen de gerapporteerde statistieken afwijken."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Ontvangen"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Verzonden"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Max. gelijktijdige verbindingen"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Mislukte pogingen"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Afgehaakte"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Commando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Er kan geen verbinding worden gemaakt met de server"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9651,18 +9683,18 @@ msgstr ""
"hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op "
"te slaan."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Het aantal transactie dat gebruik maakte van het tijdelijke binaire log "
"cache."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9674,11 +9706,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9686,7 +9718,7 @@ msgstr ""
"Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch "
"door de server werd aangemaakt tijdens het uitvoeren van opdrachten."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9694,7 +9726,7 @@ msgstr ""
"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad "
"(mogelijk een reeds bestaande sleutel)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9703,23 +9735,23 @@ msgstr ""
"afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen "
"thread."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Het aantal met INSERT DELAYED opgeslagen rijen."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Het aantal uitgevoerde FLUSH opdrachten."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Het aantal interne COMMIT opdrachten."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9729,7 +9761,7 @@ msgstr ""
"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft "
"aan hoeveel tabellen met discovery werden opgezocht."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9739,7 +9771,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9748,7 +9780,7 @@ msgstr ""
"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige "
"indexen."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9758,7 +9790,7 @@ msgstr ""
"wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking "
"of bij het doen van een index scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9766,7 +9798,7 @@ msgstr ""
"Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit "
"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9779,7 +9811,7 @@ msgstr ""
"gehele tabel moet scannen of er worden joins toegepast die niet goed "
"gebruikmaken van sleutels."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9792,35 +9824,35 @@ msgstr ""
"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van "
"maken."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Het aantal interne ROLLBACK opdrachten."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Het aantal update opdrachten voor een tabel rij."
-#: server_status.php:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Het aantal pages dat data bevat (dirty en clean)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Het aantal pages dat momenteel dirty is."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Het aantal buffer pool pages dat is geschoond."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Het aantal vrije pages."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9830,7 +9862,7 @@ msgstr ""
"momenteel wordt gelezen of geschreven, of die om een andere reden niet "
"geschoond of verwijderd kunnen worden."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9842,11 +9874,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Totale formaat van de buffer pool, in pages."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9855,7 +9887,7 @@ msgstr ""
"gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in "
"willekeurige volgorde."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9863,11 +9895,11 @@ msgstr ""
"Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit "
"gebeurd wanneer er een volledige tabelscan wordt uitgevoerd."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9875,7 +9907,7 @@ msgstr ""
"Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer "
"pool maar waarvoor een extra page ingeladen moest worden."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9889,86 +9921,86 @@ msgstr ""
"geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer "
"pool formaat goed is ingesteld hoort deze waarde laag te zijn."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Het aantal fsync() operaties."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Het aantal momenteel openstaande fsync() operaties."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Het aantal momenteel openstaande lees operaties."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Het aantal momenteel openstaande schrijf operaties."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "De hoeveelheid gelezen data, in bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Het totale aantal data lees operaties."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Het totale aantal data schrijf operaties."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "De hoeveelheid geschreven data, in bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Het aantal uitgevoerde doublewrite operaties."
-#: server_status.php:1183
+#: server_status.php:1225
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 log buffer."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Het aantal log schrijf opdrachten."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Het aantal fysieke schrijf operaties op het log bestand."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Het aantal bytes dat naar het logbestand werd geschreven."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Het aantal pages dat werd aangemaakt."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9977,54 +10009,54 @@ msgstr ""
"Veel waarden worden geteld in pages. Een vaste page grootte maakt het "
"eenvoudig deze te converteren naar bytes."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Het aantal gelezen pages."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Het aantal geschreven pages."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10033,13 +10065,13 @@ msgstr ""
"niet naar disk zijn geschreven. Dit stond voorheen bekend als "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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 "
@@ -10048,11 +10080,11 @@ msgstr ""
"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal "
"behaalde waarde sinds het starten van de server."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10062,15 +10094,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10081,19 +10113,19 @@ msgstr ""
"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend "
"dat er nog geen query is gecompiled."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED "
"wachtrijen."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10101,39 +10133,39 @@ msgstr ""
"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table "
"cache waarde te laag."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Het totaal aantal geopende bestanden."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Het totaal aantal open tabellen."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "De hoeveelheid vrij geheugen voor het query cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Het aantal cache hits."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Het aantal queries dat aan het cache werd toegevoegd."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10146,7 +10178,7 @@ msgstr ""
"recent gebruikt (least recently used, LRU) strategie om te bepalen welke "
"queries worden verwijderd."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10154,19 +10186,19 @@ msgstr ""
"Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached "
"vanwege de query_cache_type instelling)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Het aantal queries dat in het cache staat."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Het totaal aantal blokken in het query cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10174,13 +10206,13 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10189,7 +10221,7 @@ msgstr ""
"van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik "
"van indexen te controleren.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10197,17 +10229,17 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL "
"threas."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10215,13 +10247,13 @@ msgstr ""
"Het totaal aantal transacties dat moest worden herhaald door de replicatie "
"slave SQL thread (sinds het opstarten van de server)."
-#: server_status.php:1233
+#: server_status.php:1275
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 master server."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10229,14 +10261,14 @@ msgstr ""
"Het aantal threads waarvoor het opstarten langer dan slow_launch_time "
"seconden duurde."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10246,24 +10278,24 @@ msgstr ""
"uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem "
"variabele sort_buffer_size te vergroten."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Het aantal gesorteerde rijen."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10275,7 +10307,7 @@ msgstr ""
"problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u "
"nog kijken naar het splitsen van tabellen en het gebruik van replicatie."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10285,11 +10317,11 @@ msgstr ""
"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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Het aantal momenteel openstaande verbindingen."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10301,72 +10333,72 @@ msgstr ""
"verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede "
"thead implementatie, geen noemenswaardige prestatie verbetering.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Het aantal threads dat actief bezig is."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "Tekstveld regels"
-#: server_status.php:1393
+#: server_status.php:1435
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Inleiding"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add prefix"
msgid "Add chart"
msgstr "Voeg voorvoegsel toe"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Vernieuw"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Textarea kolommen"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Fouten beheer:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Herstel standaard waarde"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
#| msgid "Introduction"
msgid "Monitor Instructions"
msgstr "Inleiding"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10375,7 +10407,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10383,7 +10415,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10395,7 +10427,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10404,105 +10436,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Gebruik"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Verwijder database"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Gebruik"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "All status variables"
msgid "Status variable(s)"
msgstr "alle status variabelen"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Selecteer tabellen"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Ongeldige tabel naam"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Een server toevoegen"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL-queries"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Toon statistieken"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Selecteer pagina"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Query-type"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10510,7 +10532,7 @@ msgid_plural "%d seconds"
msgstr[0] "Seconde"
msgstr[1] "Seconde"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10979,34 +11001,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Bekijk vreemde waarden"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Bookmark \"%s\" wordt gebruikt als standaard browse query."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Toegevoegd rij nummer: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Getoond als PHP-code"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Toont SQL-query"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Gevalideerde SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemen met de indexen van de tabel `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Label"
@@ -11785,9 +11807,9 @@ msgid "Current amount of Questions: %s"
msgstr "Huidige verbinding"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Toon SQL-queries"
#: po/advisory_rules.php:16
@@ -11809,7 +11831,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Schoon query cache"
#: po/advisory_rules.php:21
@@ -11994,12 +12016,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Ruimtegebruik"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12056,8 +12072,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12166,9 +12182,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12186,13 +12202,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
#: po/advisory_rules.php:113
#, php-format
@@ -12224,8 +12242,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "Er zijn geen bestanden om te uploaden"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12245,7 +12265,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12268,7 +12288,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12277,7 +12297,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12290,8 +12310,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Waar de tabelrij links getoond worden"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12301,8 +12323,8 @@ msgstr "Waar de tabelrij links getoond worden"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12334,10 +12356,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabel"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Waar de tabelrij links getoond worden"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12364,8 +12385,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabel"
#: po/advisory_rules.php:152
msgid ""
@@ -12406,8 +12430,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sorteer buffer grootte"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12427,8 +12453,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sorteer buffer grootte"
#: po/advisory_rules.php:168
#, php-format
@@ -12436,7 +12464,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12456,7 +12484,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Maak tabel"
#: po/advisory_rules.php:176
@@ -12477,10 +12505,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Toon open tabellen"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formaat van het geïmporteerde bestand"
#: po/advisory_rules.php:181
msgid ""
@@ -12503,7 +12531,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formaat van het geïmporteerde bestand"
#: po/advisory_rules.php:186
@@ -12550,7 +12578,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Sleutelcache"
#: po/advisory_rules.php:201
@@ -12568,8 +12596,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Tracking is niet actief."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12627,10 +12657,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Connecties"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Persistente connecties"
#: po/advisory_rules.php:221
msgid ""
@@ -12653,9 +12683,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Comprimeer verbinding"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Persistente connecties"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12677,7 +12707,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Persistente connecties"
#: po/advisory_rules.php:231
@@ -12691,8 +12721,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formaat van het geïmporteerde bestand"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12713,7 +12745,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formaat van het geïmporteerde bestand"
#: po/advisory_rules.php:243
@@ -12740,8 +12772,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool grootte"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12853,6 +12887,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Ruimtegebruik"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Toon open tabellen"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Connecties"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Comprimeer verbinding"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Gebruik"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Gebruik"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Werkboek"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 4917216d74..8aec8ba9af 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,16 +8,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr ""
@@ -47,7 +48,7 @@ msgstr ""
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +89,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr ""
@@ -199,7 +200,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -210,12 +211,12 @@ msgstr ""
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr ""
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -231,7 +232,7 @@ msgstr ""
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -352,7 +353,7 @@ msgstr ""
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -608,8 +609,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, possible-php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -619,7 +620,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -661,7 +662,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
@@ -723,10 +724,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -746,7 +747,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr ""
@@ -843,8 +844,8 @@ msgstr ""
#: import.php:57
#, possible-php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -880,7 +881,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, possible-php-format
msgid "Bookmark %s created"
msgstr ""
@@ -927,15 +928,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1010,12 +1011,12 @@ msgstr ""
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1023,15 +1024,15 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr ""
@@ -1042,13 +1043,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1078,7 +1079,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1096,154 +1097,178 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr ""
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+msgid "Query cache efficiency"
+msgstr ""
+
+#: js/messages.php:97 po/advisory_rules.php:70
+msgid "Query cache usage"
+msgstr ""
+
+#: js/messages.php:98
+msgid "Query cache used"
+msgstr ""
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr ""
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr ""
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr ""
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr ""
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, possible-php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1251,331 +1276,331 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, possible-php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, possible-php-format
msgid "Enable %s"
msgstr ""
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, possible-php-format
msgid "Disable %s"
msgstr ""
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, possible-php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr ""
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr ""
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, possible-php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr ""
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr ""
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr ""
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr ""
-#: js/messages.php:185
+#: js/messages.php:192
msgid "Analyse Query"
msgstr ""
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
msgid "Recommendation"
msgstr ""
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
msgid "Justification"
msgstr ""
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr ""
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr ""
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr ""
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr ""
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr ""
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr ""
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr ""
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr ""
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr ""
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr ""
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr ""
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr ""
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1583,98 +1608,98 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr ""
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr ""
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr ""
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr ""
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr ""
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, possible-php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1682,255 +1707,255 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr ""
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr ""
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr ""
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr ""
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr ""
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr ""
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr ""
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr ""
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr ""
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr ""
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr ""
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr ""
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr ""
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr ""
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr ""
@@ -2176,8 +2201,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:100
#, possible-php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2311,7 +2336,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr ""
@@ -2386,7 +2411,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr ""
@@ -2435,7 +2460,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr ""
@@ -2473,7 +2498,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2494,7 +2519,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2591,7 +2616,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5026,8 +5051,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5212,7 +5237,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5276,7 +5301,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5292,7 +5317,7 @@ msgstr ""
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, possible-php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5361,7 +5386,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5702,8 +5727,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, possible-php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5796,28 +5821,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr ""
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6006,47 +6031,47 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, possible-php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, possible-php-format
msgid "Structure of %s"
msgstr ""
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6486,14 +6511,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr ""
@@ -6691,7 +6716,7 @@ msgid "Returns"
msgstr ""
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr ""
@@ -7116,12 +7141,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7174,11 +7199,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7518,7 +7543,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr ""
@@ -7925,17 +7950,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8313,8 +8338,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8434,7 +8459,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8567,122 +8592,122 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, possible-php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, possible-php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr ""
-#: server_status.php:758
+#: server_status.php:800
msgid "Run analyzer"
msgstr ""
-#: server_status.php:759
+#: server_status.php:801
msgid "Instructions"
msgstr ""
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -8697,128 +8722,128 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, possible-php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, possible-php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, possible-php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr ""
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -8826,78 +8851,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -8905,7 +8930,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -8913,42 +8938,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -8956,33 +8981,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -8991,227 +9016,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9219,99 +9244,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9319,18 +9344,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9338,57 +9363,57 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9397,7 +9422,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9405,7 +9430,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9417,7 +9442,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9426,92 +9451,84 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
+#: server_status.php:1513
+msgid "Preset chart"
msgstr ""
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr ""
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr ""
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr ""
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr ""
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1589
+#: server_status.php:1626
#, possible-php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1591
+#: server_status.php:1628
#, possible-php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -9916,34 +9933,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, possible-php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, possible-php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -10672,8 +10689,7 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, possible-php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -10693,7 +10709,7 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: po/advisory_rules.php:20
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr ""
#: po/advisory_rules.php:21
@@ -10859,10 +10875,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-msgid "memcached usage"
-msgstr ""
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -10917,8 +10929,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, possible-php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11019,8 +11031,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, possible-php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11036,12 +11047,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, possible-php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11072,7 +11083,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11091,7 +11102,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11114,7 +11125,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11123,7 +11134,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11136,7 +11147,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11145,8 +11156,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11177,7 +11188,7 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-msgid "% temp disk tables"
+msgid "Percentage of temp tables on disk"
msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
@@ -11205,7 +11216,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
+msgid "Temp disk rate"
msgstr ""
#: po/advisory_rules.php:152
@@ -11245,7 +11256,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11266,7 +11277,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11275,7 +11286,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11293,7 +11304,7 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:175
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr ""
#: po/advisory_rules.php:176
@@ -11312,8 +11323,7 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, possible-php-format
-msgid "% open files"
+msgid "Percentage of used open files limit"
msgstr ""
#: po/advisory_rules.php:181
@@ -11335,7 +11345,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:185
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr ""
#: po/advisory_rules.php:186
@@ -11374,7 +11384,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11392,7 +11402,7 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
+msgid "Thread cache hit rate %"
msgstr ""
#: po/advisory_rules.php:206
@@ -11447,8 +11457,7 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, possible-php-format
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr ""
#: po/advisory_rules.php:221
@@ -11471,7 +11480,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr ""
#: po/advisory_rules.php:226
@@ -11492,7 +11501,7 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr ""
#: po/advisory_rules.php:231
@@ -11506,7 +11515,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
+msgid "Percentage of aborted clients"
msgstr ""
#: po/advisory_rules.php:236 po/advisory_rules.php:241
@@ -11526,7 +11535,7 @@ msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
#: po/advisory_rules.php:240
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr ""
#: po/advisory_rules.php:243
@@ -11551,7 +11560,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
diff --git a/po/pl.po b/po/pl.po
index 3e6660325f..5891e818d2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: polish \n"
+"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Pokaż wszystko"
@@ -48,7 +48,7 @@ msgstr "Szukaj"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Nazwa klucza"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Opis"
@@ -202,7 +202,7 @@ msgstr "Łącze"
msgid "Comments"
msgstr "Komentarze"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Komentarze"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nie"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Nie"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -360,7 +360,7 @@ msgstr "Edytuj lub eksportuj schemat relacji"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -626,11 +626,11 @@ msgstr "Monitorowanie nie jest aktywne."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
-"sdocumentation%s."
+"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
+"%sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -639,7 +639,7 @@ msgstr "Widok"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikacja"
@@ -681,7 +681,7 @@ msgstr "Zaznacz nieoptymalne"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
@@ -745,10 +745,10 @@ msgstr "Monitorowane tabele"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -768,7 +768,7 @@ msgstr "Zaktualizowane"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -867,8 +867,8 @@ msgstr "Zrzut został zapisany do pliku %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s."
@@ -911,7 +911,7 @@ msgstr "Zapamiętane zapytanie SQL zostało usunięte."
msgid "Showing bookmark"
msgstr "Pokaz zapamiętanego zapytania"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Zapytanie %s zostało zapamiętane"
@@ -965,15 +965,15 @@ msgstr "Kliknij, aby zaznaczyć"
msgid "Click to unselect"
msgstr "Kliknij, aby usunąć zaznaczenie"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Polecenie \"DROP DATABASE\" jest zablokowane."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Czy na pewno wykonać "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
@@ -1058,12 +1058,12 @@ msgstr "Przeładowanie uprawnień"
msgid "Removing Selected Users"
msgstr "Usuń zaznaczonych użytkowników"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Zamknij"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1071,17 +1071,17 @@ msgstr "Zamknij"
msgid "Edit"
msgstr "Edytuj"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Wybór serwera"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1094,13 +1094,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Sumarycznie"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1132,7 +1132,7 @@ msgstr "Wybór serwera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesy"
@@ -1152,172 +1152,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Statystyki zapytań"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Nie udało się załadować lub zapisać konfiguracji"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Pamięć podręczna zapytań"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Pamięć podręczna zapytań"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Pamięć podręczna zapytań"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Liczba plików dziennika"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Rezerwy buforowe"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Sumarycznie"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Strony puste"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Otrzymane"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Połączenia"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Suggestions:"
msgid "Questions"
msgstr "Propozycje:"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Ruch"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Ogólne funkcje relacyjne"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Usuń bazę danych"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Przyciągaj do siatki"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Brak"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1325,382 +1357,382 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "Zapisz jako plik"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Włączone"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Wyłączone"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Inne kluczowe ustawienia"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "Other core settings"
msgid "Current settings"
msgstr "Inne kluczowe ustawienia"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Tytuł raportu"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Różnica"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Przejdź do bazy danych"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filtr"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtr"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Liczba wstawianych rekordów"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Sumarycznie"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Wczytywanie"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Przeładuj"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Import"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Zmień zapytanie"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentacja"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Szczegóły…"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication type"
msgid "Justification"
msgstr "Typ uwierzytelniania"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Anuluj"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Wczytywanie"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Przetwarzanie wywołania"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Błąd przetwarzania wywołania"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Usuwanie Kolumny"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Dodawanie klucza głównego"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Zmiana nazwy bazy danych"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Przeładowanie bazy danych"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopiowanie bazy danych"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kodowanie napisów"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabela musi mieć przynajmniej jedną kolumnę"
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Utwórz tabelę"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Użyj tabel"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
msgstr "Dołącz indeks(y)"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Pokaż siatkę"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Wyszukiwanie"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
msgstr "Ukryj okno zapytania SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search results"
msgstr "Okno zapytania SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Przeglądaj"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Usuwanie %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Ukryj okno zapytań"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Pokaż okno zapytań"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Żaden rekord nie został zaznaczony"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Zmień"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maksymalny czas wykonania"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1708,106 +1740,106 @@ msgstr "Maksymalny czas wykonania"
msgid "Save"
msgstr "Zachowaj"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Ukryj okno zapytania SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "Okno zapytania SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoruj"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dodaj %s pól"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Wybierz klucz odwołujący"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Wybierz klucz zewnętrzny"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Należy wybrać klucz główny lub klucz jednoznaczny"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Wybierz kolumny do wyświetlenia"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Dodaj opcję do kolumny"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Kliknij, aby zaznaczyć"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Wygeneruj hasło"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generuj"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Zmień hasło"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Więcej"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1817,29 +1849,29 @@ msgstr ""
"werja to %s, wydana dnia %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", ostatnia stabiln()a wersja:"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Przejdź do bazy danych"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Zakończ"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Poprzedni"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1847,80 +1879,80 @@ msgid "Next"
msgstr "Następne"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Dzisiaj"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Styczeń"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Luty"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Marzec"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Kwiecień"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Maj"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Czerwiec"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Lipiec"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Sierpień"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Wrzesień"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Październik"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Listopad"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Grudzień"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1928,70 +1960,70 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Gru"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Niedziela"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Poniedziałek"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Wtorek"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Środa"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Czwartek"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Piątek"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1999,98 +2031,98 @@ msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Nie"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Wto"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Śro"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Czw"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pią"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sob"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Godzina"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekunda"
@@ -2360,8 +2392,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego "
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
@@ -2506,7 +2538,7 @@ msgstr "współdzielone"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabele"
@@ -2590,7 +2622,7 @@ msgstr ""
"Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Serwer"
@@ -2639,7 +2671,7 @@ msgid "Documentation"
msgstr "Dokumentacja"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Zapytanie SQL"
@@ -2679,7 +2711,7 @@ msgid "Create PHP Code"
msgstr "Utwórz kod PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Odśwież"
@@ -2702,7 +2734,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mechanizmy"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilowanie"
@@ -2811,7 +2843,7 @@ msgstr "Kliknij, aby zaznaczyć"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5543,8 +5575,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
@@ -5783,7 +5815,7 @@ msgstr "Sortuj wg klucza"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5853,7 +5885,7 @@ msgid "The row has been deleted"
msgstr "Rekord został skasowany"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Unicestwij"
@@ -5869,7 +5901,7 @@ msgstr "Pokaż rekordy "
msgid "total"
msgstr "wszystkich"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)"
@@ -5944,7 +5976,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Rezerwy buforowe"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Status InnoDB"
@@ -6341,8 +6373,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6458,28 +6490,28 @@ msgid "Display MIME types"
msgstr "Dostępne typy MIME"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Czas wygenerowania"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Wersja serwera"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Wersja PHP"
@@ -6687,54 +6719,54 @@ msgid "Generated by"
msgstr "Wygenerowany przez"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL zwrócił pusty wynik (zero rekordów)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Zobacz zawartość struktury klikając jej nazwę"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Przejdź do bazy danych"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Brakuje danych dla %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Przejdź do tabeli"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Tylko struktura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Przejdź do widoku"
@@ -7199,14 +7231,14 @@ msgid "Slave status"
msgstr "Stan serwera podrzędnego"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Zmienna"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Wartość"
@@ -7432,7 +7464,7 @@ msgid "Returns"
msgstr "Zwracany typ"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Czas"
@@ -7936,12 +7968,12 @@ msgid "Synchronize"
msgstr "Synchronizacja"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Dziennik binarny"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Zmienne"
@@ -7996,11 +8028,11 @@ msgstr "Wyczyść"
msgid "Columns"
msgstr "Nazwy kolumn"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Pamiętaj zapytanie SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Pozwól na dostęp wszystkim użytkownikom"
@@ -8103,8 +8135,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
-"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
-"sdokumentacji%s."
+"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
+"%sdokumentacji%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8154,8 +8186,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
-"sopisy transformacji%s"
+"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
+"%sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@@ -8477,7 +8509,7 @@ msgstr "Wersja protokołu"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Użytkownik"
@@ -8635,8 +8667,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
-"s."
+"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
+"%s."
#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152
msgid "No databases"
@@ -8969,17 +9001,17 @@ msgstr "Tabela \"%s\" nie istnieje!"
msgid "Select binary log to view"
msgstr "Wybierz dziennik binarny do podglądu"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Pliki"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Ucinaj wyświetlane zapytania"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Pokaż pełne zapytania"
@@ -9375,8 +9407,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
@@ -9512,7 +9544,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Pokaż stan serwera głównego"
@@ -9669,12 +9701,12 @@ msgstr ""
"Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy "
"chcesz go skonfigurować ?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Wątek %s został pomyślnie unicestwiony."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9682,127 +9714,127 @@ msgstr ""
"phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on "
"już zamknięty."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Obsługa"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Pamięć podręczna zapytań"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Wątki"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Dane tymczasowe"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Opóźnione dodania"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Bufor podręczny indeksów"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Złączenia"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortowanie"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordynator transakcji"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Przeładuj (zamknij) wszystkie tabele"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Pokaż podrzędne hosty"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Status serwera podrzędnego"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Opróżnij bufor podręczny zapytań"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informacje o działaniu serwera"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Zobacz status tabeli serwera podrzędnego"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Odśwież"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nie zmieniaj hasła"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacje"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Rodzaj zapytania"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Wprowadzenie"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9817,46 +9849,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Personalizuj stronę startową"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "na godzinę"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "na minutę"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "na sekundę"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Cecha"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Serwer MySQL działa przez %s. Początek pracy: %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9864,25 +9896,25 @@ msgstr ""
"Ten serwer MySQL jest ustawiony jako master i slave w procesie "
"replikacji."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Stan replikacji"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9890,47 +9922,47 @@ msgstr ""
"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki "
"jakich dostarcza serwer MySQL nie są wiarygodne."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Otrzymane"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Wysłane"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Maks. jednoczesnych połączeń"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Nieudane próby"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Przerwane"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Polecenie"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Nie można połączyć się z serwerem MySQL"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9940,18 +9972,18 @@ msgstr ""
"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania "
"instrukcji transakcji został użyty plik tymczasowy."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9963,11 +9995,11 @@ msgstr ""
"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w "
"pamięci, a nie na dysku."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Ile plików tymczasowych utworzył mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9975,7 +10007,7 @@ msgstr ""
"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer "
"podczas wykonywania instrukcji."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9983,7 +10015,7 @@ msgstr ""
"Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił "
"jakiś błąd (prawdopodobnie zdublowany klucz)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9991,23 +10023,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Liczba wykonanych instrukcji FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Liczba wewnętrznych instrukcji COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Ile razy rekord został usunięty z tabeli."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -10017,7 +10049,7 @@ msgstr ""
"informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery"
"i>). Handler_discover wskazuje, ile razy tabela została odkryta."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -10027,7 +10059,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -10035,7 +10067,7 @@ msgstr ""
"Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra "
"oznaka tego, że zapytania i tabele są właściwie zindeksowane."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -10045,7 +10077,7 @@ msgstr ""
"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym "
"przedziale lub przy przeszukiwaniu indeksu."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10053,7 +10085,7 @@ msgstr ""
"Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda "
"używana głównie do optymalizacji ORDER BY … DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -10065,7 +10097,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -10077,35 +10109,35 @@ msgstr ""
"nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób "
"pozwalający skorzystać z istniejących indeksów."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Liczba wewnętrznych instrukcji ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Liczba żądań zmiany rekordu w tabeli."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Liczba żądań dodania rekordu do tabeli."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Liczba stron zawierających dane (brudnych lub czystych)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Liczba aktualnie brudnych stron."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Liczba wolnych stron."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -10115,7 +10147,7 @@ msgstr ""
"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub "
"usunięte z jakiegoś innego powodu."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -10128,11 +10160,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Łączny rozmiar puli bufora, w stronach."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10141,7 +10173,7 @@ msgstr ""
"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej "
"kolejności."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10149,11 +10181,11 @@ msgstr ""
"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10161,7 +10193,7 @@ msgstr ""
"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i "
"musiał wykonać odczyt pojedynczej strony."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -10175,51 +10207,51 @@ msgstr ""
"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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Liczba wykonanych zapisów do puli bufora InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Liczba dotąd wykonanych operacji fsync()."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Aktualna liczba operacji fsync() w toku."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Aktualna liczba odczytów w toku."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Aktualna liczba zapisów w toku."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Ilość dotąd odczytanych danych, w bajtach."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Łączna liczba odczytów danych."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Łączna liczba zapisów danych."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Ilość dotąd zapisanych danych, w bajtach."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr "Liczba przeprowadzonych zapisów typu doublewrite."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Liczba stron zapisanych przy zapisie typu doublewrite."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -10227,35 +10259,35 @@ msgstr ""
"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy "
"oczekiwano na jego opróżnienie."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Liczba żądań zapisów do dziennika."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Liczba fizycznych zapisów do pliku dziennika."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Liczba synchronicznych zapisów do pliku dziennika."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Liczba wywołań fsync dla pliku dziennika w toku."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Liczba zapisów do pliku dziennika w toku."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Liczba bajtów zapisanych do pliku dziennika."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Liczba utworzonych stron."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10264,51 +10296,51 @@ msgstr ""
"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą "
"konwersję na bajty."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Liczba odczytanych stron."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Liczba zapisanych stron."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Liczba blokad rekordów na które aktualnie się czeka."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Średni czas uzyskania blokady rekordu, w milisekundach."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Ile razy czekano na blokadę rekordu."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Liczba rekordów usuniętych z tabel InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Liczba rekordów dodanych do tabel InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Liczba rekordów odczytanych z tabel InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Liczba rekordów zmienionych w tabelach InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10317,7 +10349,7 @@ msgstr ""
"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10325,7 +10357,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -10334,11 +10366,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10349,15 +10381,15 @@ msgstr ""
"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/"
"Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10368,17 +10400,17 @@ msgstr ""
"wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze "
"żadne zapytanie nie zostało skompilowane."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10386,39 +10418,39 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Liczba otwartych plików."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Liczba otwartych tabel."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Liczba trafień pamięci podręcznej."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Liczba zapytań dodanych do pamięci podręcznej."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10431,7 +10463,7 @@ msgstr ""
"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany"
"\" (least recently used - LRU)."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10439,19 +10471,19 @@ msgstr ""
"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub "
"niezbuforowanych z powodu ustawienia query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Całkowita liczba bloków w buforze podręcznym zapytań."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10459,13 +10491,13 @@ msgstr ""
"Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje "
"staranne przyjrzenie się indeksom tabel."
-#: server_status.php:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10474,7 +10506,7 @@ msgstr ""
"dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się "
"indeksom tabel.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10482,16 +10514,16 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10499,26 +10531,26 @@ msgstr ""
"Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał "
"transakcje."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10528,23 +10560,23 @@ msgstr ""
"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej "
"systemowej sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Liczba sortowań wykonanych przy użyciu zakresów."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Liczba posortowanych rekordów."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10556,7 +10588,7 @@ msgstr ""
"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) "
"lub użyć replikacji."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10566,11 +10598,11 @@ msgstr ""
"może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony "
"oznacza, że powinno się zwiększyć thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Liczba aktualnie otwartych połączeń."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10582,72 +10614,72 @@ msgstr ""
"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego "
"polepszenia wydajności.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Liczba nieuśpionych wątków."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Start"
-#: server_status.php:1393
+#: server_status.php:1435
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Wprowadzenie"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Dołącz indeks(y)"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Odśwież"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/usuń pola"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Błąd zarządzania:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Przywróć wartość domyślną"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
#| msgid "Introduction"
msgid "Monitor Instructions"
msgstr "Wprowadzenie"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10656,7 +10688,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10664,7 +10696,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10676,7 +10708,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10685,106 +10717,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Wykorzystanie"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Usuń bazę danych"
-#: server_status.php:1474
-#, fuzzy
-msgid "Memory Usage"
-msgstr "[2. Użycie]"
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Wykorzystanie"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Zobacz status tabeli serwera podrzędnego"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Wybierz tabele"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Niewłaściwa nazwa tabeli"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Dodaj nowy serwer"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "Zapytania SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Pokaż statystyki"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Wybierz tabele"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Rodzaj zapytania"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10793,7 +10814,7 @@ msgstr[0] "Sekunda"
msgstr[1] "Sekunda"
msgstr[2] "Sekunda"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11228,8 +11249,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
-"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
+"bezpieczeństwa — [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/"
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
@@ -11240,9 +11261,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11314,36 +11335,36 @@ msgstr "Klucz powinien zawierać znaki alfanumeryczne [em]i[/em] i specjalne."
msgid "Browse foreign values"
msgstr "Przeglądaj zewnętrzne wartości"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identyfikator wstawionego rekordu: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Wyświetlany jest kod PHP."
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Wyświetlane jest zapytanie SQL."
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Sprawdź poprawność SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemy z indeksami tabeli `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Nazwa"
@@ -12154,9 +12175,9 @@ msgid "Current amount of Questions: %s"
msgstr "Niezabezpieczone połączenie"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Pokaż zapytania SQL"
#: po/advisory_rules.php:16
@@ -12178,7 +12199,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Opróżnij bufor podręczny zapytań"
#: po/advisory_rules.php:21
@@ -12363,12 +12384,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Wykorzystanie przestrzeni"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12425,8 +12440,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12535,9 +12550,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Pozwala tworzyć tabele tymczasowe."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12555,13 +12570,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Pozwala tworzyć tabele tymczasowe."
#: po/advisory_rules.php:113
#, php-format
@@ -12593,8 +12610,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "Nie podałeś plików do wgrania na serwer"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12614,7 +12633,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12637,7 +12656,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12646,7 +12665,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12659,7 +12678,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12668,8 +12687,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12700,11 +12719,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabel"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12731,8 +12747,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabel"
#: po/advisory_rules.php:152
msgid ""
@@ -12773,8 +12792,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Rozmiar bufora dla sortowania"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12794,8 +12815,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Rozmiar bufora dla sortowania"
#: po/advisory_rules.php:168
#, php-format
@@ -12803,7 +12826,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12823,7 +12846,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Utwórz tabelę"
#: po/advisory_rules.php:176
@@ -12844,10 +12867,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Pokaż otwarte tabele"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format importowanych plików"
#: po/advisory_rules.php:181
msgid ""
@@ -12870,7 +12893,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format importowanych plików"
#: po/advisory_rules.php:186
@@ -12917,7 +12940,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Bufor podręczny indeksów"
#: po/advisory_rules.php:201
@@ -12935,8 +12958,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Monitorowanie nie jest aktywne."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12994,10 +13019,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Połączenia"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Trwałe połączenia"
#: po/advisory_rules.php:221
msgid ""
@@ -13020,9 +13045,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Kompresja połączenia"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Trwałe połączenia"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -13044,7 +13069,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Trwałe połączenia"
#: po/advisory_rules.php:231
@@ -13058,8 +13083,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format importowanych plików"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -13080,7 +13107,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format importowanych plików"
#: po/advisory_rules.php:243
@@ -13107,8 +13134,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Rozmiar rezerw buforowych"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13220,6 +13249,34 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Wykorzystanie przestrzeni"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Pokaż otwarte tabele"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Połączenia"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Kompresja połączenia"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Wykorzystanie"
+
+#, fuzzy
+#~ msgid "Memory Usage"
+#~ msgstr "[2. Użycie]"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Wykorzystanie"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Skoroszyt Excel 97-2003 XLS"
diff --git a/po/pt.po b/po/pt.po
index 941015f5d3..125e33090f 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: \n"
"Language-Team: portuguese \n"
+"Language: pt\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Mostrar tudo"
@@ -48,7 +48,7 @@ msgstr "Pesquisar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Nome do Índice"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Descrição"
@@ -202,7 +202,7 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Comentários"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Não"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Não"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -357,7 +357,7 @@ msgstr "Editar ou exporta o esquema relacional (schema)"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -618,11 +618,11 @@ msgstr "Detecção de Alterações está desactivada."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
-"sdocumentação%s."
+"Esta vista tem número de linhas aproximado. Por favor, consulte a "
+"%sdocumentação%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -631,7 +631,7 @@ msgstr "Vista"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Replicação"
@@ -674,7 +674,7 @@ msgstr "Verificar tabelas com overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
@@ -741,10 +741,10 @@ msgstr "Tabelas em tracking"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -764,7 +764,7 @@ msgstr "Actualizado"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Estado"
@@ -863,8 +863,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
@@ -912,7 +912,7 @@ msgstr "Marcador apagado com sucesso."
msgid "Showing bookmark"
msgstr "Mostrando Marcador"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -966,15 +966,15 @@ msgstr "Clique para seleccionar"
msgid "Click to unselect"
msgstr "Clique para deseleccionar"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Confirma : "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
@@ -1056,12 +1056,12 @@ msgstr "A recarregar privilégios"
msgid "Removing Selected Users"
msgstr "Removendo os utilizadores seleccionados"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1069,17 +1069,17 @@ msgstr "Fechar"
msgid "Edit"
msgstr "Edita"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Escolha do Servidor"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "Comando SQL"
@@ -1091,13 +1091,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1129,7 +1129,7 @@ msgstr "Escolha do Servidor"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processos"
@@ -1149,167 +1149,194 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Estatísticas dos registos"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Tipo de Query"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Tipo de Query"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Tipo de Query"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Total"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Recebido"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Ligações"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versões"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Tráfego"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Características gerais de Relação"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Remover a Base de Dados"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Nenhum"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1317,369 +1344,369 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "envia"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Activado"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Desactidado"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Características gerais de Relação"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Características gerais de Relação"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
msgid "Chart Title"
msgstr "Tipo de Exportação"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Sem bases de dados"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Qtd Campos"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Qtd Campos"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "Número de registos por página"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Total"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Carregando"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload Database"
msgid "Reload page"
msgstr "Recarregar Base de Dados"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Exportar"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Actualiza Comando SQL"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentação"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Documentação"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Carregando"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Processando Pedido"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Erro a Processar Pedido"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Apagando Coluna"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Adicionando Chave Primária"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Renomeando Bases de Dados"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Recarregar Base de Dados"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Copiando Bases de Dados"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Mudando Mapa de Caracteres"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "A tabela terá que ter pelo menos uma coluna"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Criar uma Tabela"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Usar Tabelas"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Índices"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Mostrar grelha"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Pesquisando"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "Comando SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "Comando SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Visualizar"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "A apagar %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Esconder Caixa do query"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Mostrar Caixa do query"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Muda"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1687,110 +1714,110 @@ msgstr ""
msgid "Save"
msgstr "Guarda"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Esconder critérios de buca"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Mostrar critérios de busca"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "Adiciona novo campo"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Seleccione chave de referencia"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Seleccione Foreign Key"
-#: js/messages.php:263
+#: js/messages.php:270
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:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Escolha campo para mostrar"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Clique para seleccionar"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Gerado por"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Seg"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1798,30 +1825,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Versão do servidor"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Sem bases de dados"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Dados"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1829,96 +1856,96 @@ msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binário "
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1926,78 +1953,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Seg"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ter"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Sex"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2005,100 +2032,100 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "em uso"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2352,11 +2379,11 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
-"2$s pode ser utilizado para criar um."
+"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
+"%2$s pode ser utilizado para criar um."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2493,7 +2520,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabelas"
@@ -2572,7 +2599,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Servidor"
@@ -2621,7 +2648,7 @@ msgid "Documentation"
msgstr "Documentação"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Comando SQL"
@@ -2659,7 +2686,7 @@ msgid "Create PHP Code"
msgstr "Criar código PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2680,7 +2707,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2787,7 +2814,7 @@ msgstr "Clique para seleccionar"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5370,8 +5397,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5581,7 +5608,7 @@ msgstr "Ordenar por chave"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5653,7 +5680,7 @@ msgid "The row has been deleted"
msgstr "Registo eliminado"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Termina"
@@ -5669,7 +5696,7 @@ msgstr "Mostrando registos "
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "O Query demorou %01.4f sec"
@@ -5743,7 +5770,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Estado da InnoDB"
@@ -6088,8 +6115,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6203,28 +6230,28 @@ msgid "Display MIME types"
msgstr "MIME-types disponíveis"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Máquina"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Data de Criação"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versão do servidor"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "versão do PHP"
@@ -6425,50 +6452,50 @@ msgid "Generated by"
msgstr "Gerado por"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL não retornou nenhum registo."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Sem bases de dados"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Sem bases de dados"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Somente a estrutura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6921,14 +6948,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variável"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valor"
@@ -7143,7 +7170,7 @@ msgid "Returns"
msgstr "Opções da tabela"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tempo"
@@ -7621,13 +7648,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Binário "
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variáveis"
@@ -7684,11 +7711,11 @@ msgstr ""
msgid "Columns"
msgstr "Nome dos Campos"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Marcar este comando SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Deixar todos os utilizadores acederem a este marcador"
@@ -8078,7 +8105,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Utilizador"
@@ -8535,18 +8562,18 @@ msgstr "A tabela \"%s\" não existe!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Qtd Campos"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncar os Queries mostrados"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Mostrar queries completos"
@@ -8943,8 +8970,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "
@@ -9076,7 +9103,7 @@ msgstr "O privilégios foram recarregados com sucesso."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9216,136 +9243,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Tipo de Query"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Instrucções de inserção múltiplas"
-#: server_status.php:496
+#: server_status.php:541
#, fuzzy
msgid "Key cache"
msgstr "Tipo de Query"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Mostra tabelas"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informação de Runtime"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
msgid "Refresh rate: "
msgstr "Gerado por"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Mantendo a palavra-passe "
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Mostra tabelas"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Mostra tabelas"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relações"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipo de Query"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funções"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9360,131 +9387,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "por hora"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "por segundo"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Itens"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Relações"
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Recebido"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Tentativas falhadas"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Comando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9492,78 +9519,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9571,7 +9598,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9579,42 +9606,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9622,33 +9649,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9657,227 +9684,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9885,99 +9912,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9985,18 +10012,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10004,62 +10031,62 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
msgid "Start Monitor"
msgstr "Estado"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "Adiciona novo campo"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Gerado por"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Adicionar/Remover Campos"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10068,7 +10095,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10076,7 +10103,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10088,7 +10115,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10097,98 +10124,88 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Utilização"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Remover a Base de Dados"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Utilização"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Seleccionar Tabelas"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Acrescenta um utilizador"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "Comando SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Estatísticas dos registos"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Seleccionar Tabelas"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipo de Query"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10196,7 +10213,7 @@ msgid_plural "%d seconds"
msgstr[0] "por segundo"
msgstr[1] "por segundo"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10613,37 +10630,37 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
#, fuzzy
msgid "Showing SQL query"
msgstr "Mostrar queries completos"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validar SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiqueta"
@@ -11434,8 +11451,8 @@ msgid "Current amount of Questions: %s"
msgstr "Ligações"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Mostrar queries completos"
#: po/advisory_rules.php:16
@@ -11457,7 +11474,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show query box"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Mostrar Caixa do query"
#: po/advisory_rules.php:21
@@ -11637,12 +11654,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Espaço ocupado"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11698,8 +11709,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11804,9 +11815,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permite criar tabelas temporárias."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11824,13 +11835,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permite criar tabelas temporárias."
#: po/advisory_rules.php:113
#, php-format
@@ -11861,8 +11874,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "Rate of joins without indexes"
+msgstr "Tabelas em tracking"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11882,7 +11897,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11905,7 +11920,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11914,7 +11929,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11927,7 +11942,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11936,8 +11951,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11968,11 +11983,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabela"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11999,8 +12011,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabela"
#: po/advisory_rules.php:152
msgid ""
@@ -12039,7 +12054,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12060,7 +12075,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12069,7 +12084,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12088,7 +12103,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Criar uma Página nova"
#: po/advisory_rules.php:176
@@ -12107,9 +12122,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Mostra tabelas"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Configurar o Mapa de Caracteres do ficheiro:"
#: po/advisory_rules.php:181
msgid ""
@@ -12131,7 +12146,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Configurar o Mapa de Caracteres do ficheiro:"
#: po/advisory_rules.php:186
@@ -12173,7 +12188,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Tipo de Query"
#: po/advisory_rules.php:201
@@ -12191,8 +12206,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Detecção de Alterações está desactivada."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12248,9 +12265,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Ligações"
#: po/advisory_rules.php:221
@@ -12275,7 +12292,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Ligações"
#: po/advisory_rules.php:226
@@ -12298,7 +12315,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Ligações"
#: po/advisory_rules.php:231
@@ -12312,8 +12329,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Índice"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12334,7 +12353,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Índice"
#: po/advisory_rules.php:243
@@ -12359,7 +12378,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12466,6 +12485,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Espaço ocupado"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Mostra tabelas"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Ligações"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Ligações"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Utilização"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Utilização"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 173b6dd8bc..657e77ecef 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-30 02:20+0200\n"
"Last-Translator: Julio Cesar Zuppa \n"
"Language-Team: brazilian_portuguese \n"
+"Language: pt_BR\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Mostrar todos"
@@ -47,7 +47,7 @@ msgstr "Procurar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Nome chave"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Descrição"
@@ -201,7 +201,7 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Comentários"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Não"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Não"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Editar ou exportar esquema relacional"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -613,11 +613,11 @@ msgstr "Rastreamento não está ativo."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
-"sdocumentação%s."
+"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
+"%sdocumentação%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
#: libraries/tbl_info.inc.php:60 tbl_structure.php:210
@@ -626,7 +626,7 @@ msgstr "Visão"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replicação"
@@ -668,7 +668,7 @@ msgstr "Verificar sobre-carga"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
@@ -730,10 +730,10 @@ msgstr "Tabelas rastreadas"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -753,7 +753,7 @@ msgstr "Atualizado"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -852,8 +852,8 @@ msgstr "Dump foi salvo no arquivo %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@@ -898,7 +898,7 @@ msgstr "O marcador foi removido."
msgid "Showing bookmark"
msgstr "Exibindo marcadores"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -951,15 +951,15 @@ msgstr "Clique para selecionar"
msgid "Click to unselect"
msgstr "Clique para desmarcar"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "O comando \"DROP DATABASE\" está desabilitado."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Você realmente deseja"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
@@ -1036,12 +1036,12 @@ msgstr "Recarregando privilégios"
msgid "Removing Selected Users"
msgstr "Remover os usuários selecionados"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1049,15 +1049,15 @@ msgstr "Fechar"
msgid "Edit"
msgstr "Editar"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Gráfico de tráfego em tempo real"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Quadro conn./process em tempo real"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Gráfico de consulta em tempo real"
@@ -1068,13 +1068,13 @@ msgstr "Dado(s) estático(s)"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Outro"
@@ -1104,7 +1104,7 @@ msgstr "Tráfego do Servidor (em KiB)"
msgid "Connections since last refresh"
msgstr "Conexões desde a última atualização"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processos"
@@ -1122,178 +1122,210 @@ msgstr "Requisições desde a última atualização"
msgid "Questions (executed statements by the server)"
msgstr "Requisições (Declarações executadas pelo servidor)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Estatísticas de Consultas"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Falhou ao ler o arquivo de configuração"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Consulta do cache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Consulta do cache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Consulta do cache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Utilização da CPU pelo sistema"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Memória do sistema"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Área de Troca (Swap) do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Carga média"
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "System memory"
msgid "Total memory"
msgstr "Memória do sistema"
-#: js/messages.php:101
+#: js/messages.php:108
#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
msgstr "Memória do sistema"
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
#, fuzzy
#| msgid "System memory"
msgid "Free memory"
msgstr "Memória do sistema"
-#: js/messages.php:104
+#: js/messages.php:111
#, fuzzy
#| msgid "System memory"
msgid "Used memory"
msgstr "Memória do sistema"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Páginas livres"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Recebido"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Conexões"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Requisições"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Tráfego"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
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:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Remover Gráfico/Tabela ou Relatório"
-#: js/messages.php:121
+#: js/messages.php:128
#, fuzzy
#| msgid "Edit labels and series"
msgid "Edit title and labels"
msgstr "Editar rótulos e séries."
# 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:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Adicionar Gráfico/Tabela ou Relatório ajustado na grade"
-#: js/messages.php:124
+#: js/messages.php:131
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:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Nenhum"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Continuar o monitoramento"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Pausar o monitoramento"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "\"general_log\" e \"slow_query_log\" estão ativados."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "\"general_log\" está ativado."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "\"slow_query_log\" está ativado."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "\"slow_query_log\" e \"general_log\" estão desativados."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "\"log_output\" não está definido para a TABELA"
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "\"log_output\" está definido para a TABELA"
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1304,12 +1336,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:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1318,30 +1350,30 @@ msgstr ""
"padrão quando o servidor reiniciar:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Habilitar %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Desabilitar %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Definir \"long_query_time\" para %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1350,314 +1382,314 @@ msgstr ""
"se como usuário \"Root\" ou entre em contato com seu administrador do banco "
"de dados."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Alterar configurações"
-#: js/messages.php:148
+#: js/messages.php:155
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:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Título do Relatório/Gráfico ou Tabela"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Dividido por %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analisando e carregando logs. Isso pode demorar."
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Ir para banco de dados"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filtro"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtro"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Número de linhas inseridas"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Total"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Carregando"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Recarregar"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importar"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Atualizar a consulta SQL"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentação"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Detalhes"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Autenticação"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Carregando"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Processando a requisição"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Erro no processamento da requisição"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Excluindo coluna"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Adicionar chave primária"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Renomeando o Banco de Dados"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Recarregar o Banco de Dados"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Copiar Banco de Dados"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Modificando charset"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "A tabela deve ter pelo menos uma coluna"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Criar nova tabela"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Inserir tabela"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Ocultar índices"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Mostrar índices"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Buscando"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Ocultar resultados da pesquisa"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Mostrar resultados da pesquisa"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Navegação"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Apagando %s"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Ocultar caixa de consulta"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Mostrar caixa de consulta"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nenhum registro selecionado"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Alterar"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Tempo máximo de execução"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1665,42 +1697,42 @@ msgstr "Tempo máximo de execução"
msgid "Save"
msgstr "Salvar"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Ocultar critério de pesquisa"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Exibir critério de pesquisa"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Adicionar coluna"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Seleciona chave referenciada"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Selecionar Chave Estrangeira"
-#: js/messages.php:263
+#: js/messages.php:270
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:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Marque a coluna para exibir"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1708,61 +1740,61 @@ 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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Adicionar uma opção para a coluna"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Arraste para reordenar"
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Clique para selecionar"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Clique para marcar/desmarcar"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Clique na seta para alternar a visibilidade da coluna"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Gerar senha"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Gerar"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Alterar senha"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Mais"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1772,27 +1804,27 @@ msgstr ""
"atualização. A nova versão é %s, lançada em %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ". última versão estável:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "até à data"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Concluído"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1800,149 +1832,149 @@ msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Hoje"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Janeiro"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Fevereiro"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Março"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Abril"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Maio"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Junho"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Julho"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Agosto"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Setembro"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Outubro"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Novembro"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Segunda"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Terça"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Quarta"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Quinta"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Sexta"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1950,98 +1982,98 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Segundo"
@@ -2301,8 +2333,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@@ -2446,7 +2478,7 @@ msgstr "compartilhado"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabelas"
@@ -2526,7 +2558,7 @@ msgstr ""
"Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Servidor"
@@ -2575,7 +2607,7 @@ msgid "Documentation"
msgstr "Documentação"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "consulta SQL"
@@ -2613,7 +2645,7 @@ msgid "Create PHP Code"
msgstr "Criar código PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Atualizar"
@@ -2634,7 +2666,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "na linha"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Perfil"
@@ -2741,7 +2773,7 @@ msgstr "Clique para alternar"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5294,8 +5326,8 @@ msgstr ", @TABLE@ se tornará o nome da tabela"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@@ -5510,7 +5542,7 @@ msgstr "Ordenar pela chave"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5581,7 +5613,7 @@ msgid "The row has been deleted"
msgstr "Registro eliminado"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Matar"
@@ -5597,7 +5629,7 @@ msgstr "Mostrando registros "
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Consulta levou %01.4f segundos"
@@ -5674,7 +5706,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Status do InnoDB"
@@ -6034,8 +6066,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6145,28 +6177,28 @@ msgid "Display MIME types"
msgstr "MIME-type disponíveis"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Tempo de Geração"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versão do Servidor"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versão do PHP"
@@ -6367,51 +6399,51 @@ msgid "Generated by"
msgstr "Gerado por"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou um conjunto vazio (ex. zero registros)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Sem bases"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "dado faltante para %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Sem bases"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Somente estrutura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6867,14 +6899,14 @@ msgid "Slave status"
msgstr "Exibir status dos escravos"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variáveis"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valor"
@@ -7095,7 +7127,7 @@ msgid "Returns"
msgstr "Tipo de returno"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tempo"
@@ -7586,12 +7618,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Log binário"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variáveis"
@@ -7648,11 +7680,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Nome das colunas"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Gravar essa consulta SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Deixar qualquer usuário acessar esse marcador"
@@ -8115,7 +8147,7 @@ msgstr "Versão do Protocolo"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Usuário"
@@ -8591,17 +8623,17 @@ msgstr "A tabela \"%s\" não existe!"
msgid "Select binary log to view"
msgstr "Selecionar log binário para exibir"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Arquivos"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncar as consultas SQL exibidas"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Mostrar consultas completas"
@@ -8995,8 +9027,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "
@@ -9129,7 +9161,7 @@ msgstr "Os privilégios foram recarregados com sucesso."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Exibir status dos escravos"
@@ -9270,12 +9302,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Processo %s foi morto com sucesso."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9283,125 +9315,125 @@ msgstr ""
"phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já "
"esteja fechado."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Consulta do cache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Processos"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Dados temporários"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Inserções demoradas"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Chave do cache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Junções"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Ordenando"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Coordenador da transação"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Nivelar (fechar) todas as tabelas"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Exibir tabelas abertas"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Exibir servidores escravos"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Exibir status dos escravos"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Nivelar cache da consulta"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informações de Runtime"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Atualizar"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Não mudar a senha"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Exibir tabelas abertas"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Exibir tabelas abertas"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relações"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipo de consulta"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introdução"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9416,70 +9448,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "por hora"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "por segundo"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Comandos"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Replicação"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9487,47 +9519,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Recebido"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Enviar"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "máx. de conexões concorrentes"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Tentativas falharam"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Comando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
#| msgid "Whether to enable SSL for connection to MySQL server."
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Caso queira ativar o SSL para conexões com o servidor MySQL."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9537,16 +9569,16 @@ msgstr ""
"excederam o valor do binlog_cache_size e usaram o arquivo temporário para "
"armazenar enunciados da transação."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9558,11 +9590,11 @@ msgstr ""
"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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Quantos arquivos temporários o MySQL tinha criado."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9570,7 +9602,7 @@ msgstr ""
"O número de tabelas temporárias na memória criadas automaticamente pelo "
"servidor enquanto executava os enunciados."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9578,7 +9610,7 @@ msgstr ""
"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido "
"(provavelmente chave duplicada)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9586,23 +9618,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "O número de linhas INSERT DELAYED escritas."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "O número de enunciados FLUSH executados."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "O número de enunciados COMMIT internos."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9612,7 +9644,7 @@ msgstr ""
"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:1151
+#: server_status.php:1193
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, "
@@ -9622,7 +9654,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9631,7 +9663,7 @@ msgstr ""
"alto, é uma boa indicação de que suas consultas e tabelas estejam "
"corretamente indexadas."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9641,7 +9673,7 @@ msgstr ""
"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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9649,7 +9681,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -9662,7 +9694,7 @@ msgstr ""
"faça a varredura de tabelas inteiras ou você tem junções que não usam as "
"chaves corretamente."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9674,37 +9706,37 @@ msgstr ""
"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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "O número de enunciados ROLLBACK internos."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "O número de páginas atualmente sujas."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "O número de páginas livres."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9714,7 +9746,7 @@ msgstr ""
"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:1165
+#: server_status.php:1207
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 "
@@ -9726,11 +9758,11 @@ msgstr ""
"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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Tamanho total do buffer pool, em páginas."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9739,7 +9771,7 @@ msgstr ""
"uma consulta faz a varredura de uma parcela grande de uma tabela mas na "
"ordem aleatória."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9747,11 +9779,11 @@ 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:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9759,7 +9791,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9773,55 +9805,55 @@ msgstr ""
"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:1172
+#: server_status.php:1214
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:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "O número de operações fsync() à fazer."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "O número atual de operações fsync() pendentes."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "O número atual de leituras pendentes."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "O número atual de escritas pendentes."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "O montante de leitura de dados à fazer, em bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "O número total de dados lidos."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "O número total de dados escritos."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "O montante de escrita de dados à fazer, em bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9829,35 +9861,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "O número de requisições de escrita de log."
-#: server_status.php:1185
+#: server_status.php:1227
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:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "O número de arquivos de log fsyncs pendentes."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Escrita de arquivos de log pendentes."
-#: server_status.php:1189
+#: server_status.php:1231
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:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "O número de páginas criadas."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9866,52 +9898,52 @@ msgstr ""
"contados em páginas; o tamanho de página permite que sejam facilmente "
"convertidos em bytes."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "O número de páginas lidas."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "O número de páginas escritas."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "O número de linhas deletadas de tabelas InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "O número de linhas inseridas em tabelas InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "O número de linhas lidas de tabelas InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "O número de linhas atualizadas em tabelas InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9919,7 +9951,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -9927,7 +9959,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -9937,11 +9969,11 @@ msgstr ""
"indica o número máximo de blocos que estiveram sempre em uso em algum "
"momento."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9951,15 +9983,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9970,18 +10002,18 @@ msgstr ""
"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi "
"compilada ainda."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9989,39 +10021,39 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "O número de arquivos que estão abertos."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "O número de tabelas que estão abertas."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "O montante de memória livre para a consulta do cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "O número de hits do cache."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "O número de consultas adicionadas no cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10034,7 +10066,7 @@ msgstr ""
"recentemente\" (LRU - least recently used) para decidir qual consulta "
"remover do cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10042,19 +10074,19 @@ 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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "O número de consultas registradas no cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "O número total de blocos na consulta do cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "O status da replicação à prova de falhas (não implementado)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10062,13 +10094,13 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10077,7 +10109,7 @@ msgstr ""
"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os "
"índices de suas tabelas.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10085,16 +10117,16 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10102,11 +10134,11 @@ 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:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10114,12 +10146,12 @@ msgstr ""
"O número de processos que levaram mais que slow_launch_time segundos para "
"serem criadas."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10129,24 +10161,24 @@ msgstr ""
"valor for alto, você deve considerar aumentar o valor da variável "
"sort_buffer_size do sistema."
-#: server_status.php:1237
+#: server_status.php:1279
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:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "O número de linhas ordenadas."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10158,7 +10190,7 @@ msgstr ""
"performance, você precisa primeiramente otimizar suas consultas e então, ou "
"dividir sua tabela ou usar replicação."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10168,11 +10200,11 @@ msgstr ""
"ser calculada como Threads_created/conexões. Se este valor for vermelho você "
"deve aumentar seu thread_cache_size"
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "O número de conexões atualmente abertas."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10184,69 +10216,69 @@ msgstr ""
"isso não da um aumento notável de performance se você tem uma boa "
"implementação de processos.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "O número de processos que não estão dormindo."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
msgid "Start Monitor"
msgstr "Status"
-#: server_status.php:1393
+#: server_status.php:1435
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Introdução"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "Adicionar índice"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Atualizar"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Adicionar/Remover colunas"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Restaurar valor padrão"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
#| msgid "1. Introduction"
msgid "Monitor Instructions"
msgstr "1. Introdução"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10255,7 +10287,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10263,7 +10295,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10275,7 +10307,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10284,105 +10316,94 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+# 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:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Uso"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Remover Gráfico/Tabela ou Relatório"
-#: server_status.php:1474
-#, fuzzy
-#| msgid "2. Usage"
-msgid "Memory Usage"
-msgstr "2. Utilização"
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Uso"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Tabelas selecionadas"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Nome de tabela inválida"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Adicionar novo servidor"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "Consultas SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Mostrar estatísticas"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Tabelas selecionadas"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipo de consulta"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10390,7 +10411,7 @@ msgid_plural "%d seconds"
msgstr[0] "Segundo"
msgstr[1] "Segundo"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10819,34 +10840,34 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais."
msgid "Browse foreign values"
msgstr "Visualizar valores estrangeiros"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Usando marcador \"%s\" como padrão."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id da linha inserida: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Exibindo como código PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Exibindo consulta SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas com o índice da tabela `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Nome"
@@ -11651,9 +11672,9 @@ msgid "Current amount of Questions: %s"
msgstr "Conexão atual"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Mostrar consultas SQL"
#: po/advisory_rules.php:16
@@ -11675,7 +11696,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Nivelar cache da consulta"
#: po/advisory_rules.php:21
@@ -11863,12 +11884,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Uso do espaço"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11925,8 +11940,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12035,9 +12050,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permitir criar tabelas temporárias."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12055,13 +12070,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permitir criar tabelas temporárias."
#: po/advisory_rules.php:113
#, php-format
@@ -12092,8 +12109,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Não existem rotinas para mostrar."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12113,7 +12132,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12136,7 +12155,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12145,7 +12164,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12158,7 +12177,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12167,8 +12186,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12199,11 +12218,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabela"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12230,8 +12246,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabela"
#: po/advisory_rules.php:152
msgid ""
@@ -12272,8 +12291,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Tamanho do buffer de ordenação"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12293,8 +12314,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Tamanho do buffer de ordenação"
#: po/advisory_rules.php:168
#, php-format
@@ -12302,7 +12325,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12322,7 +12345,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Criar tabela"
#: po/advisory_rules.php:176
@@ -12343,10 +12366,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Exibir tabelas abertas"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formato do arquivo importado"
#: po/advisory_rules.php:181
msgid ""
@@ -12369,7 +12392,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formato do arquivo importado"
#: po/advisory_rules.php:186
@@ -12417,7 +12440,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Chave do cache"
#: po/advisory_rules.php:201
@@ -12435,8 +12458,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Rastreamento não está ativo."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12495,10 +12520,10 @@ msgid "slow_launch_time is set to %s"
msgstr "\"long_query_time\" está definida para %d segundo(s)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Conexões"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Conexões persistentes"
#: po/advisory_rules.php:221
msgid ""
@@ -12522,7 +12547,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Persistent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Conexões persistentes"
#: po/advisory_rules.php:226
@@ -12545,7 +12570,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Conexões persistentes"
#: po/advisory_rules.php:231
@@ -12559,8 +12584,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formato do arquivo importado"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12581,7 +12608,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formato do arquivo importado"
#: po/advisory_rules.php:243
@@ -12608,8 +12635,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Tamanho do Buffer Pool"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12721,6 +12750,34 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Uso do espaço"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Exibir tabelas abertas"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Conexões"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Conexões persistentes"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Uso"
+
+#, fuzzy
+#~ msgid "Memory Usage"
+#~ msgstr "2. Utilização"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Uso"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ro.po b/po/ro.po
index db736eaded..75ca8bd409 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \n"
+"Language: ro\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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Arată toate"
@@ -48,7 +48,7 @@ msgstr "Caută"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Nume cheie"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Descriere"
@@ -204,7 +204,7 @@ msgstr "Trimitere la"
msgid "Comments"
msgstr "Comentarii"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -215,12 +215,12 @@ msgstr "Comentarii"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nu"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -236,7 +236,7 @@ msgstr "Nu"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -367,7 +367,7 @@ msgstr "Schema relațională"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -640,8 +640,8 @@ msgstr "Monitorizarea nu este activată"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@@ -652,7 +652,7 @@ msgstr "Vizualizare"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replicare"
@@ -694,7 +694,7 @@ msgstr "Verificare depășit"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportă"
@@ -762,10 +762,10 @@ msgstr "Tabelele urmărite"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -785,7 +785,7 @@ msgstr "Actualizat(ă)"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Stare"
@@ -891,11 +891,11 @@ msgstr "Copia a fost salvată în fișierul %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
-"sdocumentație%s pentru căi de ocolire a acestei limite."
+"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
+"%sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -938,7 +938,7 @@ msgstr "Eticheta a fost ștearsă."
msgid "Showing bookmark"
msgstr "Afișînd semn de carte"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Semnul de carte %s a fost creat"
@@ -991,15 +991,15 @@ msgstr "Click pentru a selecta"
msgid "Click to unselect"
msgstr "Click pentru a deselecta"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Sigur doriți să "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!"
@@ -1087,12 +1087,12 @@ msgstr "Reîncărcarea drepturilor"
msgid "Removing Selected Users"
msgstr "Eliminarea utilizatorilor selectați"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1100,17 +1100,17 @@ msgstr ""
msgid "Edit"
msgstr "Editare"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Alegerea serverului"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "Comanda SQL"
@@ -1122,13 +1122,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1160,7 +1160,7 @@ msgstr "Alegerea serverului"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procese"
@@ -1180,173 +1180,205 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Statisticile rîndului"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Cache interogări"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Cache interogări"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Cache interogări"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiO"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiO"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Număr de fișiere-jurnal"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Pagini libere"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Recepționat"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Conexiuni"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Versiuni"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafic"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Facilități generale"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Redenumire bază de date în"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Aliniere la grilă"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Nici unul(a)"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1354,388 +1386,388 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Activat"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Dezactivează"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Facilități generale"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Facilități generale"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Titlu raport"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Nu sînt baze de date"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Fișiere"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Fișiere"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Numărul de rînduri sortate."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Total"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Local"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Reîncarcă"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importă"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Reînnoire comandă"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Documentație"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Detalii..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Customization"
msgid "Justification"
msgstr "Personalizare"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Renunță"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procese"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "E bine"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Redenumire bază de date în"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Redenumire bază de date în"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copiază baza de date"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Set de caractere"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Creare tabel"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Utilizare tabele"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Indexuri"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Arată grila"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Caută"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "Comanda SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "Comanda SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Navigare"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Șterge %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "Comanda SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "Comanda SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nu e nici un rînd selectat"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Schimbare"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1743,112 +1775,112 @@ msgstr ""
msgid "Save"
msgstr "Salveaza"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "Comanda SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "Comanda SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoră"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Adaugă %s cîmp(uri)"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Alegere cheie referențiată"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Alegeți cheia străină"
-#: js/messages.php:263
+#: js/messages.php:270
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:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Selectează un cîmp"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Click pentru a selecta"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generează parolă"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generează"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Schimbare parolă"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Lun"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1858,30 +1890,30 @@ msgstr ""
"procesul de actualizare. Noua versiune este %s, publicată în data de %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "Ultima versiune"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Nu sînt baze de date"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Gata"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1889,84 +1921,84 @@ msgid "Next"
msgstr "Următorul"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Ianuarie"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Februarie"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Martie"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Aprilie"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mai"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Iunie"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Iulie"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Septembrie"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Octombrie"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Noiembrie"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Decembrie"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1974,78 +2006,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dum"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Vin"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2053,102 +2085,102 @@ msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sâm"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dum"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lun"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mie"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Joi"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Vin"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sâm"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "în folosință"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2416,8 +2448,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@@ -2563,7 +2595,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabele"
@@ -2649,7 +2681,7 @@ msgstr ""
"dumneavoastră."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2698,7 +2730,7 @@ msgid "Documentation"
msgstr "Documentație"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Comanda SQL"
@@ -2737,7 +2769,7 @@ msgid "Create PHP Code"
msgstr "Creează cod PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Reîncarcă"
@@ -2760,7 +2792,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motoare"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Creare profil"
@@ -2869,7 +2901,7 @@ msgstr "Click pentru a selecta"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5487,12 +5519,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5717,7 +5749,7 @@ msgstr "Sortare după cheie"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5787,7 +5819,7 @@ msgid "The row has been deleted"
msgstr "Linia a fost ștearsă"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Oprește"
@@ -5803,7 +5835,7 @@ msgstr "Afișează înregistrări"
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "comanda a durat %01.4f sec"
@@ -5879,7 +5911,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Stare InnoDB"
@@ -6275,8 +6307,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6393,28 +6425,28 @@ msgid "Display MIME types"
msgstr "Tipuri MIME disponibile"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Gazda"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Timp de generare"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versiune server"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versiune PHP"
@@ -6615,50 +6647,50 @@ msgid "Generated by"
msgstr "Generat de"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a dat un set de rezultate gol (zero linii)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Nu sînt baze de date"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Nu sînt baze de date"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Numai structura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7113,14 +7145,14 @@ msgid "Slave status"
msgstr "Afișează stare sclav"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variabil"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Valoare"
@@ -7340,7 +7372,7 @@ msgid "Returns"
msgstr "Tipul întors"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Timp"
@@ -7837,12 +7869,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Jurnal binar"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variabile"
@@ -7901,11 +7933,11 @@ msgstr "Calendar"
msgid "Columns"
msgstr "Denumirile coloanelor"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Pune semn de carte la această comandă SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
@@ -8374,7 +8406,7 @@ msgstr "Versiune protocol"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Utilizator"
@@ -8850,17 +8882,17 @@ msgstr "Tabelul „%s” nu există!"
msgid "Select binary log to view"
msgstr "Selectați jurnalul binar pentru vizualizare"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Fișiere"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncare comenzi afișate"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Afișare comandă întreagă"
@@ -9263,8 +9295,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "
@@ -9396,7 +9428,7 @@ msgstr "Drepturile au fost reîncarcate cu succes."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Afișează stare sclav"
@@ -9537,12 +9569,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Firul de execuție %s a fost oprit cu succes."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9550,125 +9582,125 @@ msgstr ""
"phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost "
"deja oprit."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Gestionar"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Cache interogări"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Fire"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Date temporare"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Inserări întîrziate"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Joncțiuni"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortare"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Coordonator tranzacție"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Afișează tabele deschise"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Afișează gazde sclavi"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Afișează stare sclav"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Reinițializare cache interogare"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informații rulare"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Reîncarcă"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nu schimbați parola"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Afișează tabele deschise"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Afișează tabele deschise"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Legături"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tip interogare"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introducere"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9683,70 +9715,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "pe oră"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "pe minut"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "pe secundă"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Comenzi"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Replicare"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9754,46 +9786,46 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Recepționat"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Trimis"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "conexiuni concurente (maxim)"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Încercări nereușite"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Întrerupt"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Comanda"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Comprimă conexiunea la serverul MySQL"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9803,16 +9835,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9824,11 +9856,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Cîte fișiere temporare a creat mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9836,7 +9868,7 @@ msgstr ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9844,7 +9876,7 @@ msgstr ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9852,23 +9884,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "The number of INSERT DELAYED rows written."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "The number of executed FLUSH statements."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "The number of internal COMMIT statements."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9878,7 +9910,7 @@ msgstr ""
"table with a given name. This is called discovery. Handler_discover "
"indicates the number of time tables have been discovered."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9888,7 +9920,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9896,7 +9928,7 @@ 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:1153
+#: server_status.php:1195
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 "
@@ -9906,7 +9938,7 @@ msgstr ""
"incremented if you are querying an index column with a range constraint or "
"if you are doing an index scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9914,7 +9946,7 @@ msgstr ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9926,7 +9958,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9938,36 +9970,36 @@ msgstr ""
"tables are not properly indexed or that your queries are not written to take "
"advantage of the indexes you have."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Numărul de pagini actualmente murdare."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Numărul de pagini libere."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9977,7 +10009,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9989,11 +10021,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10001,7 +10033,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10009,11 +10041,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10021,7 +10053,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -10035,55 +10067,55 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -10091,35 +10123,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Numărul de pagini create."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10127,51 +10159,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Numărul de pagini citite."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Numărul de pagini scrise."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Numărul de rînduri citite din tabelele InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Numărul de rînduri actualizate în tabelele InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10179,7 +10211,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -10187,7 +10219,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -10197,11 +10229,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10211,15 +10243,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10229,17 +10261,17 @@ msgstr ""
"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."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10247,38 +10279,38 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Numărul de tabele ce sînt deschise."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Numărul de nimeriri în cache."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Numărul de interogări adăugate la cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10290,7 +10322,7 @@ msgstr ""
"cache size. The query cache uses a least recently used (LRU) strategy to "
"decide which queries to remove from the cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10298,19 +10330,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Numărul de interogări înregistrate în cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Numărul total de blocuri în cache-ul interogării."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10318,11 +10350,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10330,7 +10362,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10338,15 +10370,15 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10354,11 +10386,11 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10366,13 +10398,13 @@ msgstr ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10382,23 +10414,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Numărul de rînduri sortate."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10410,7 +10442,7 @@ msgstr ""
"should first optimize your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10420,11 +10452,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Numărul de conexiuni deschise momentan."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10436,68 +10468,68 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Dum"
-#: server_status.php:1393
+#: server_status.php:1435
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Introducere"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Adaugă %s cîmp(uri)"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Reîncarcă"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Adaugă/șterge coloane"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
#| msgid "Introduction"
msgid "Monitor Instructions"
msgstr "Introducere"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10506,7 +10538,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10514,7 +10546,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10526,7 +10558,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10535,101 +10567,91 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Utilizare"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "Redenumire bază de date în"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Utilizare"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Selectează tabele"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Denumire de tabel nevalidă"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Adaugă un server nou"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "Comanda SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Statisticile rîndului"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Selectează tabele"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tip interogare"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10638,7 +10660,7 @@ msgstr[0] "pe secundă"
msgstr[1] "pe secundă"
msgstr[2] "pe secundă"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11060,36 +11082,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Caută printre valori necunoscute"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID rînd inserat: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Afișare ca și cod PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Afișare interogare SQL"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validează SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleme cu indexul tabelului `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etichetă"
@@ -11884,8 +11906,8 @@ msgid "Current amount of Questions: %s"
msgstr "Comprimă conexiunea"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Afișare comandă întreagă"
#: po/advisory_rules.php:16
@@ -11907,7 +11929,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Reinițializare cache interogare"
#: po/advisory_rules.php:21
@@ -12088,12 +12110,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Utilizare spațiu"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12150,8 +12166,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12260,9 +12276,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Permite crearea de tabele temporare."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12280,13 +12296,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Permite crearea de tabele temporare."
#: po/advisory_rules.php:113
#, php-format
@@ -12318,8 +12336,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Tabelele urmărite"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12338,7 +12357,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12361,7 +12380,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12370,7 +12389,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12383,7 +12402,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12392,8 +12411,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12424,10 +12443,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tabele"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12454,8 +12471,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tabele"
#: po/advisory_rules.php:152
msgid ""
@@ -12496,8 +12515,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sortare Mărime tampon"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12517,8 +12538,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sortare Mărime tampon"
#: po/advisory_rules.php:168
#, php-format
@@ -12526,7 +12549,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12546,7 +12569,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Creare tabel"
#: po/advisory_rules.php:176
@@ -12567,10 +12590,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Afișează tabele deschise"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formatul fișierului importat"
#: po/advisory_rules.php:181
msgid ""
@@ -12593,7 +12616,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formatul fișierului importat"
#: po/advisory_rules.php:186
@@ -12640,7 +12663,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Key cache"
#: po/advisory_rules.php:201
@@ -12658,8 +12681,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Monitorizarea nu este activată"
#: po/advisory_rules.php:206
#, fuzzy
@@ -12717,10 +12742,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Conexiuni"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "conexiuni concurente (maxim)"
#: po/advisory_rules.php:221
msgid ""
@@ -12743,9 +12768,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Comprimă conexiunea"
+#| msgid "max. concurrent connections"
+msgid "Percentage of aborted connections"
+msgstr "conexiuni concurente (maxim)"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12767,7 +12792,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "conexiuni concurente (maxim)"
#: po/advisory_rules.php:231
@@ -12781,8 +12806,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formatul fișierului importat"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12803,7 +12830,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formatul fișierului importat"
#: po/advisory_rules.php:243
@@ -12830,8 +12857,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool size"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12943,6 +12972,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Utilizare spațiu"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Afișează tabele deschise"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Conexiuni"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Comprimă conexiunea"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Utilizare"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Utilizare"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ru.po b/po/ru.po
index 84341c9708..ee52b596e7 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-03 19:50+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
+"Language: ru\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"
+"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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Показать все"
@@ -48,7 +48,7 @@ msgstr "Поиск"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Имя индекса"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Описание"
@@ -202,7 +202,7 @@ msgstr "Связи"
msgid "Comments"
msgstr "Комментарии"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Комментарии"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Нет"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Нет"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -357,7 +357,7 @@ msgstr "Редакция или экспорт схемы связей"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -618,8 +618,8 @@ msgstr "Слежение выключено."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@@ -631,7 +631,7 @@ msgstr "Представление"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Репликация"
@@ -673,7 +673,7 @@ msgstr "Отметить требующие оптимизации"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспорт"
@@ -735,10 +735,10 @@ msgstr "Отслеживаемые таблицы"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -758,7 +758,7 @@ msgstr "Обновлён"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Состояние"
@@ -857,8 +857,8 @@ msgstr "Дамп был сохранен в файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@@ -904,7 +904,7 @@ msgstr "Закладка удалена."
msgid "Showing bookmark"
msgstr "Отображение закладки"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка "%s" создана"
@@ -957,15 +957,15 @@ msgstr "Выделение"
msgid "Click to unselect"
msgstr "Снятие выделения"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Вы действительно хотите выполнить запрос"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "База данных будет полностью УДАЛЕНА!"
@@ -1040,12 +1040,12 @@ msgstr "Перезагрузка привилегий"
msgid "Removing Selected Users"
msgstr "Удаление выбранных пользователей"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Закрыть"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1053,15 +1053,15 @@ msgstr "Закрыть"
msgid "Edit"
msgstr "Изменить"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Графический вывод трафика"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Графический вывод соединений и процессов"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Графический вывод запросов"
@@ -1072,13 +1072,13 @@ msgstr "Статические данные"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Всего"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Другое"
@@ -1108,7 +1108,7 @@ msgstr "Трафик сервера (в KiB)"
msgid "Connections since last refresh"
msgstr "Соединений с момента последнего обновления"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Процессы"
@@ -1128,170 +1128,202 @@ msgstr "Соединений с момента последнего обновл
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Статистика запросов"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Ошибка при чтении конфигурационного файла"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Кеш запросов"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Кеш запросов"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Кеш запросов"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "КБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total count"
msgid "Total memory"
msgstr "Общее количество"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Буферный пул"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Всего"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Чистых страниц"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Принято"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Соединения"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Версии"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Настройки"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Удалить базу данных"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Привязать к сетке"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Нет"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1299,369 +1331,369 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Доступно"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Недоступно"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "Пользовательские настройки"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "Дополнительные настройки"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Chart title"
msgid "Chart Title"
msgstr "Заголовок графика"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Различие"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Перейти к базе данных"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Фильтр"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Фильтр"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Количество строк при вставке"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Всего"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Загрузка"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Обновить"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Импорт"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Дополнить запрос"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Документация"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Детали"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Идентификация"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Отмена"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Загрузка"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Обработка запроса"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Ошибка при обработке запроса"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Удаление столбца"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Добавление первичного ключа"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Переименование базы данных"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Перезагрузка базы данных"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Копирование базы данных"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Смена кодировки"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "У таблицы должен быть, как минимум, один столбец"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Создать таблицу"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Вставить таблицу"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "Добавить индекс"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Отображать сетку"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Поиск"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Скрыть результаты поиска"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Отобразить результаты поиска"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Просмотр"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Удаление"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "Определение хранимой функции должно содержать выражение RETURN!"
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
"Замечание: если файл содержит множество таблиц, они будут объединены в одну"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Скрыть поле запроса"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Отобразить поле запроса"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Для совершения действия необходимо выбрать одну или несколько строк"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Изменить"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Максимальное время выполнения"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1669,44 +1701,44 @@ msgstr "Максимальное время выполнения"
msgid "Save"
msgstr "Сохранить"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Скрыть параметры поиска"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Отобразить параметры поиска"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Игнорировать"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Добавить столбец"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Выберите ссылочный ключ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Выберите внешний ключ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
"Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) "
"индексом"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Выбор отображаемого столбца"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1714,59 +1746,59 @@ msgstr ""
"Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. "
"Продолжить?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Добавить параметр для столбца"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Изменить порядок перетаскиванием"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Кликнуть для сортировки"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Кликнуть для снятия/установки отметки"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Создать пароль"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генерировать"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Изменить пароль"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Ещё"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1776,27 +1808,27 @@ msgstr ""
"Новейшая версия %s, выпущена %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", последняя стабильная версия:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "актуально"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Готово"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Предыдущий"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1804,149 +1836,149 @@ msgid "Next"
msgstr "Следующий"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Сегодня"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Январь"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Февраль"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Март"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Апрель"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Май"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Июнь"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Июль"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Август"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Сентябрь"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Октябрь"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Ноябрь"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Декабрь"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Воскресенье"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Понедельник"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Вторник"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Среда"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Четверг"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Пятница"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Суббота"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1954,84 +1986,84 @@ msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Вс"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Нед."
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Час"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Минута"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Секунда"
@@ -2293,8 +2325,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@@ -2437,7 +2469,7 @@ msgstr "общий"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Таблицы"
@@ -2518,7 +2550,7 @@ msgstr ""
"конфигурационном файле phpMyAdmin."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сервер"
@@ -2568,7 +2600,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-запрос"
@@ -2606,7 +2638,7 @@ msgid "Create PHP Code"
msgstr "PHP-код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Обновить"
@@ -2627,7 +2659,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Быстрая правка"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Профилирование"
@@ -2737,7 +2769,7 @@ msgstr "Выделение"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5403,8 +5435,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@@ -5613,7 +5645,7 @@ msgstr "Сортировать по индексу"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5677,7 +5709,7 @@ msgid "The row has been deleted"
msgstr "Запись была удалена"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Завершить"
@@ -5693,7 +5725,7 @@ msgstr "Отображает строки"
msgid "total"
msgstr "всего"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "запрос занял %01.4f сек."
@@ -5766,7 +5798,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буферный пул"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Состояние InnoDB"
@@ -6172,8 +6204,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
"PrimeBase XT%s."
@@ -6268,28 +6300,28 @@ msgid "Display MIME types"
msgstr "Отобразить MIME типы"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Время создания"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Версия сервера"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Версия PHP"
@@ -6506,53 +6538,53 @@ msgid "Generated by"
msgstr "Создан"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Следующие структуры были созданы, либо изменены. Вы можете:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Просмотреть детали структуры нажав на её имя"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Отредактировать структуру перейдя по ссылке \"Структура\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Перейти к базе данных"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Отсутствуют данные для %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Перейти к таблице"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Только структура"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Перейти к представлению (VIEW)"
@@ -7011,14 +7043,14 @@ msgid "Slave status"
msgstr "Статус Slave"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Переменная"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Значение"
@@ -7252,7 +7284,7 @@ msgid "Returns"
msgstr "Возвращаемый тип"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Время"
@@ -7725,12 +7757,12 @@ msgid "Synchronize"
msgstr "Синхронизировать"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Бинарный журнал"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Переменные"
@@ -7783,11 +7815,11 @@ msgstr "Очистить"
msgid "Columns"
msgstr "Столбцы"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Создание закладки"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Доступна для всех пользователей"
@@ -8200,7 +8232,7 @@ msgstr "Версия протокола"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Пользователь"
@@ -8648,17 +8680,17 @@ msgstr "Файл не существует"
msgid "Select binary log to view"
msgstr "Выберите бинарный журнал для просмотра"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Файлов"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Сокращенное отображение запросов"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Развернутое отображение запросов"
@@ -9053,8 +9085,8 @@ msgstr "Удалить базы данных, имена которых совп
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
@@ -9187,7 +9219,7 @@ msgstr "Головной сервер успешно изменён на %s"
msgid "This server is configured as master in a replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Показать состояние головного сервера"
@@ -9338,12 +9370,12 @@ msgstr ""
"Данный сервер не настроен в качестве подчинённого для процесса репликации. "
"Хотите произвести настройку?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процесс %s был успешно завершен."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9351,119 +9383,119 @@ msgstr ""
"phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был "
"закрыт."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Обработчик"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Кеш запросов"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Потоки"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Временные данные"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Отложенные вставки"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Кеш индекса"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Объединения"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Координатор транзакций"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Закрыть все таблицы"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Список открытых таблиц"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Информация о подчиненных серверах"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Информация о состоянии сервера репликации"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Дефрагментировать кеш запросов"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Текущее состояние MySQL"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Все переменные состояния"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh rate:"
msgid "Refresh rate: "
msgstr "Частота обновления:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Содержит слово:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Выводить только предупреждающие значения"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Фильтр по категории..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Выводить только предупреждающие значения"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Связанные ссылки:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Тип запроса"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функции"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9478,46 +9510,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Network traffic since startup: %s"
msgid "Questions since startup: %s"
msgstr "Сетевой трафик с момента запуска: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "в час"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "в минуту"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "в секунду"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Характеристика"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "Кол-во"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Сетевой трафик с момента запуска: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9525,16 +9557,16 @@ msgstr ""
"Данный MySQL сервер настроен головным и подчиненным в процессе "
"репликации."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Данный сервер настроен подчиненным в процессе репликации."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9542,11 +9574,11 @@ msgstr ""
"Для получения подробной информации о состоянии репликации сервера, "
"пожалуйста, перейдите в раздел репликации."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Состояние репликации"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9554,45 +9586,45 @@ msgstr ""
"На загруженном сервере, побайтовые счетчики могут переполняться, таким "
"образом, статистика, передаваемая MySQL-сервером, может быть некорректной."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Принято"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Отправлено"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Максимально одновременных"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Неудачных попыток"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Прерваны"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Команда"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Количество неудавшихся попыток соединения к серверу MySQL."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9602,16 +9634,16 @@ msgstr ""
"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения "
"были сохранены во временном файле."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Количество транзакций, использовавших кеш бинарного журнала."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL."
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9623,11 +9655,11 @@ msgstr ""
"велико, следует увеличить значение переменной tmp_table_size, чтобы "
"временные таблицы располагались в памяти, а не на жестком диске."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9635,7 +9667,7 @@ msgstr ""
"Количество временных таблиц в памяти, созданных сервером автоматически в "
"процессе выполнения SQL-выражений."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9643,31 +9675,31 @@ msgstr ""
"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, "
"например, из-за дублирования ключей."
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Количество строк записанных в режиме отложенной вставки данных (INSERT "
"DELAYED)."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Количество выполненных команд FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Количество внутренних команд COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Количество запросов на удаление строк из таблицы."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9677,7 +9709,7 @@ msgstr ""
"определенным именем. Этот процесс называется обнаружением. Handler_discover "
"- число обнаружений таблиц."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9688,7 +9720,7 @@ msgstr ""
"индекса. Например, SELECT col1 FROM foo, при условии, что col1 "
"проиндексирован."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9697,7 +9729,7 @@ msgstr ""
"значение переменной говорит о том, что запросы и таблицы проиндексированы "
"надлежащим образом."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9707,7 +9739,7 @@ msgstr ""
"индексов. Значение увеличивается при запросе индексного столбца с "
"ограничением по размеру или при сканировании индекса."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9715,7 +9747,7 @@ msgstr ""
"Количество запросов на чтение предыдущей строки при ниспадающей сортировке "
"индекса. Обычно используется при оптимизации: ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9728,7 +9760,7 @@ msgstr ""
"требующих полного сканирования таблиц, наличием объединений не использующих "
"индексы надлежащим образом."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9740,39 +9772,39 @@ msgstr ""
"что таблицы не проиндексированы надлежащим образом или запросы не используют "
"преимущества индексов."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Количество внутренних команд ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Количество запросов на обновление строк в таблице."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Количество запросов на вставку строк в таблицу."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Количество страниц содержащих данные ("грязные" или ""
"чистые")."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Текущее количество "грязных" страниц."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Количество страниц буферного пула, над которыми был осуществлен процесс "
"очистки (FLUSH)."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Количество свободных страниц."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9782,7 +9814,7 @@ msgstr ""
"страницами осуществляется процесс чтения или записи, либо они не могут быть "
"очищены или удалены по какой-либо другой причине."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9794,11 +9826,11 @@ msgstr ""
"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Общий размер буферного пула (в страницах)."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9806,7 +9838,7 @@ msgstr ""
"Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это "
"происходит, когда запрос сканирует большую часть таблицы в случайном порядке."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9815,11 +9847,11 @@ msgstr ""
"происходит, когда InnoDB выполняет полное последовательное сканирование "
"таблицы."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Количество последовательных запросов на чтение, выполненных InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9827,7 +9859,7 @@ msgstr ""
"Количество последовательных запросов на чтение, которые InnoDB не смог "
"выполнить из буферного пула и использовал постраничное чтение."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9841,55 +9873,55 @@ msgstr ""
"ожиданий. Если размер буферного пула был установлен должным образом, "
"значение будет небольшим."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Количество записей, выполненных в буферный пул InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Количество операций fsync(), выполненных на данный момент."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Текущее количество незавершенных операций fsync()."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Текущее количество незавершенных операций чтения."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Текущее количество незавершенных операций записи."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Сумма данных (в байтах), прочитанных на данный момент."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Общее количество операций чтения данных."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Общее количество операций записи данных."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Сумма данных (в байтах), записанных на данный момент."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Количество записей в буфер doublewrite, и количество созданных для этого "
"страниц."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Количество записей в буфер doublewrite, и количество созданных для этого "
"страниц."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9897,36 +9929,36 @@ msgstr ""
"Количество ожиданий очистки журнального буфера, вследствие малого его "
"размера."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Количество запросов на запись в журнал."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Количество физических записей в файл журнала."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Количество записей с помощью fsync(), сделанных в файл журнала."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
"Количество незавершенных попыток синхронизации с помощью операции fsync."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Количество незавершенных запросов на запись в журнал."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Объем данных в байтах, записанных в файл журнала."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Количество созданных страниц."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9935,51 +9967,51 @@ msgstr ""
"приводятся в страницах, но зная объем страницы, можно перевести эти значения "
"в байты."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Количество прочитанных страниц."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Количество записанных страниц."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Текущее количество ожиданий блокировок строк."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Среднее время ожидания блокировки строк (в миллисекундах)."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Общее время, ожидания блокировок строк (в миллисекундах)."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Общее количество ожиданий блокировки строк."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Количество строк, удаленных из таблиц InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Количество строк, добавленных в таблицы InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Количество строк, прочитанных из таблиц InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Количество строк, обновленных в таблицах InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9987,7 +10019,7 @@ msgstr ""
"Количество блоков в кеше индекса, которые были изменены, но еще не записаны "
"на диск. Данный параметр также известен как Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9995,7 +10027,7 @@ msgstr ""
"Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет "
"определить как полно используется кеш индекса."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -10004,11 +10036,11 @@ msgstr ""
"Количество используемых блоков в кеше индекса. Данное значение - "
"максимальное количество блоков, использованных одновременно."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "Количество запросов на чтение блока из кеша индексов."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -10019,15 +10051,15 @@ msgstr ""
"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан "
"как: Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Количество запросов на запись блока в кеш индекса."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Количество физических операций записи блока индексов на диск."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10038,7 +10070,7 @@ msgstr ""
"одного запроса. Изначальное нулевое значение, означает, что процесса "
"компиляции запроса еще не было."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10046,11 +10078,11 @@ msgstr ""
"Максимальное количество соединений использованных одновременно начиная с "
"запуска сервера."
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10058,21 +10090,21 @@ msgstr ""
"Общее количество открывавшихся таблиц. При большом значении переменной "
"рекомендуется увеличить размер кеша таблиц (table_cache)."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Количество открытых файлов."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Количество открытых потоков (применяется к файлам журналов). Потоком "
"называется файл, открытый с помощью функции fopen."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Количество открытых таблиц."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -10082,21 +10114,21 @@ msgstr ""
"указывать на фрагментацию, проблема которой решается выполнением запроса "
"FLUSH QUERY CACHE."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Объем свободной памяти для кеша запросов."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
"Количество "попаданий" в кеш запросов, т.е. сколько запросов было "
"удовлетворено запросами, находящимися в кеше."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Количество запросов, добавленных в кеш запросов."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10109,7 +10141,7 @@ msgstr ""
"не использующиеся страницы заменяются новыми) при принятии решения об "
"удаления запроса из кеша."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10117,19 +10149,19 @@ msgstr ""
"Количество запросов, которые оказались некешируемыми или для которых "
"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Количество запросов, зарегистрированных в кеше."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Состояние отказоустойчивой репликации (пока не реализовано)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10137,13 +10169,13 @@ msgstr ""
"Количество запросов-объединений, выполненных без использования индексов. "
"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц."
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Количество запросов-объединений, выполненных с использованием поиска по "
"диапазону в таблице, на которую делается ссылка."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10152,7 +10184,7 @@ msgstr ""
"диапазону для выборки строк из вторичной таблицы. Если значение переменной "
"не равно 0, рекомендуется проверить индексы таблиц."
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10161,18 +10193,18 @@ msgstr ""
"диапазону в первой таблице. Обычно значение этой переменной не критично, "
"даже если оно велико."
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Количество запросов-объединений, выполненных с использованием полного поиска "
"по первой таблице."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Количество временных таблиц, открытых в настоящий момент подчиненным потоком."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10180,13 +10212,13 @@ msgstr ""
"Общее количество повторов транзакций подчиненным потоком репликации с "
"момента запуска."
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Присваивается значение ON, если данный сервер функционирует как подчиненный, "
"подключенный к главному."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10194,12 +10226,12 @@ msgstr ""
"Количество потоков, на создание которых потребовалось более чем "
"slow_launch_time секунд."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Количество запросов, выполнявшихся более long_query_time секунд."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10208,28 +10240,28 @@ msgstr ""
"Количество проходов, сделанных алгоритмом сортировки. При большом значении "
"следует увеличить значение переменной sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
"Количество операций сортировки, выполненных с использованием диапазона."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Количество отсортированных строк."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
"Количество операций сортировки, выполненных с использованием полного "
"сканирования таблицы."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
"Количество запросов на блокировку таблицы, которые были удовлетворены "
"немедленно."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10241,7 +10273,7 @@ msgstr ""
"производительностью, необходимо сначала оптимизировать свои запросы, а затем "
"разбить свою таблицу (или таблицы) или использовать репликацию."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10251,11 +10283,11 @@ msgstr ""
"вычислить по формуле Threads_created/Connections. Если это значение окрашено "
"в красный цвет - вам следует увеличить thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Количество открытых текущих соединений."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10267,67 +10299,67 @@ msgstr ""
"thread_cache_size (это не даст существенного выигрыша в производительности, "
"при хорошей реализации потоков)."
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Количество процессов, находящихся в активном состоянии."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "Строк в текстовом поле"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add parameter"
msgid "Add chart"
msgstr "Добавить параметр"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Частота обновления"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Столбцов в текстовом поле"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Управление ошибками:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Восстановить изначальное значение"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10336,7 +10368,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10344,7 +10376,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10356,7 +10388,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10365,105 +10397,95 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Использование"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Удалить базу данных"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Использование"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "All status variables"
msgid "Status variable(s)"
msgstr "Все переменные состояния"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Выберите таблицы"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "You must provide a routine name"
msgid "or type variable name:"
msgstr "Необходимо задать имя процедуры"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a trigger"
msgid "Add this series"
msgstr "Добавить триггер"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "Series:"
msgid "Series in Chart:"
msgstr "Серии:"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Показывать статистику"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Выберите страницу"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тип запроса"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -10471,7 +10493,7 @@ msgstr[0] "%d секунда"
msgstr[1] "%d секунды"
msgstr[2] "%d секунд"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10877,8 +10899,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"При необходимости используйте дополнительные настройки безопасности - %"
-"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
+"При необходимости используйте дополнительные настройки безопасности - "
+"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
@@ -10944,34 +10966,34 @@ msgstr "Ключ должен содержать символы алфавита
msgid "Browse foreign values"
msgstr "Обзор внешних значений"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Для обзора данных использован запрос из закладки \"%s\"."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Идентификатор вставленной строки: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Отображает как PHP-код"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Отображает SQL-запрос"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "SQL синтаксис проверен"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблемы с индексами таблицы `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Метка"
@@ -11713,9 +11735,9 @@ msgid "Current amount of Questions: %s"
msgstr "Текущее соединение"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Показывать SQL запросы"
#: po/advisory_rules.php:16
@@ -11737,7 +11759,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Дефрагментировать кеш запросов"
#: po/advisory_rules.php:21
@@ -11924,12 +11946,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Используемое пространство"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11986,8 +12002,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12096,9 +12112,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Разрешает создание временных таблиц."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12116,13 +12132,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Разрешает создание временных таблиц."
#: po/advisory_rules.php:113
#, php-format
@@ -12154,8 +12172,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Нет процедур для отображения."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12175,7 +12195,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12198,7 +12218,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12207,7 +12227,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12220,8 +12240,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Где вывести ссылки строки таблицы"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12231,8 +12253,8 @@ msgstr "Где вывести ссылки строки таблицы"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12264,10 +12286,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s таблица"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Где вывести ссылки строки таблицы"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12294,8 +12315,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s таблица"
#: po/advisory_rules.php:152
msgid ""
@@ -12336,8 +12360,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Размер буфера сортировки"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12357,8 +12383,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Размер буфера сортировки"
#: po/advisory_rules.php:168
#, php-format
@@ -12366,7 +12394,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12386,7 +12414,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Создать таблицу"
#: po/advisory_rules.php:176
@@ -12407,10 +12435,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Список открытых таблиц"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Формат импортируемого файла"
#: po/advisory_rules.php:181
msgid ""
@@ -12433,7 +12461,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Формат импортируемого файла"
#: po/advisory_rules.php:186
@@ -12483,7 +12511,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Кеш индекса"
#: po/advisory_rules.php:201
@@ -12501,8 +12529,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Слежение выключено."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12560,10 +12590,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Соединения"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Постоянные соединения"
#: po/advisory_rules.php:221
msgid ""
@@ -12586,9 +12616,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Соединение со сжатием"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Постоянные соединения"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12610,7 +12640,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Постоянные соединения"
#: po/advisory_rules.php:231
@@ -12624,8 +12654,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Формат импортируемого файла"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12646,7 +12678,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Формат импортируемого файла"
#: po/advisory_rules.php:243
@@ -12673,8 +12705,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Размер буферного пула"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12786,6 +12820,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Используемое пространство"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Список открытых таблиц"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Соединения"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Соединение со сжатием"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Использование"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Использование"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Workbook"
diff --git a/po/si.po b/po/si.po
index 7e9a0991f6..3f328c4139 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
+"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: si\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
@@ -46,7 +46,7 @@ msgstr "සෙවීම"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "යතුරු නම"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "විස්තරය"
@@ -198,7 +198,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "විස්තරය"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -209,12 +209,12 @@ msgstr "විස්තරය"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "නැත"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -230,7 +230,7 @@ msgstr "නැත"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -353,7 +353,7 @@ msgstr "ක්රමානුරූපය සංස්කරණය හෝ අ
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -614,8 +614,8 @@ msgstr "අවධානය අක්රීයයි."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
@@ -626,7 +626,7 @@ msgstr "දසුන"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "අනුරූ කරණය"
@@ -668,7 +668,7 @@ msgstr "Check tables having overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "අපනයනය"
@@ -730,10 +730,10 @@ msgstr "අවධානය සක්රීය වගු"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -753,7 +753,7 @@ msgstr "යාවත්කාලීන කරන ලදි"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "තත්වය"
@@ -852,11 +852,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -896,7 +896,7 @@ msgstr "පොත් සලකුණ ඉවත් කරන ලදි."
msgid "Showing bookmark"
msgstr "පොත් සලකුණ පෙන්වන්න"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "%s පොත් සලකුණ සාදන ලදි"
@@ -947,15 +947,15 @@ msgstr "තේරීමට ක්ලික් කරන්න"
msgid "Click to unselect"
msgstr "තේරීම අවලංගු කිරීමට ක්ලික් කරන්න"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇත."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "ඔබට ඇත්තෙන්ම අවශ්යද "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
@@ -1034,12 +1034,12 @@ msgstr "වරප්රසාද පූරණය කෙරෙමින්"
msgid "Removing Selected Users"
msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කෙරෙමින්"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "වසන්න"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1047,17 +1047,17 @@ msgstr "වසන්න"
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "සේවාදායකයේ තේරීම"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
@@ -1070,13 +1070,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "මුළු එකතුව"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1108,7 +1108,7 @@ msgstr "සේවාදායකයේ තේරීම"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "ක්රියාවලිය"
@@ -1128,168 +1128,200 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "විමසුම් සංඛ්යාලේඛන"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "වින්යාස සුරැකීම අසමත් විය"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "විමසුම් කෑෂ්"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "විමසුම් කෑෂ්"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "විමසුම් කෑෂ්"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "මුළු එකතුව"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffer Pool"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "මුළු එකතුව"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "නිදහස් පිටු"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "ලබන ලද"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "සම්බන්ධතා"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "අනුවාද"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "තදබදය"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "සිටුවම්"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "දත්තගබඩාව ඉවත් කරන්න"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "කිසිවක් නැත"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1297,371 +1329,371 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "සක්රිය කරන් ලද"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "අක්රිය"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "සිටුවම් පරිපාලනය"
# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "තවත් සිටුවම්"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title:"
msgid "Chart Title"
msgstr "වාර්තා මාතෘකාව:"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "දත්තගබඩාව වෙත යන්න"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "ක්ෂේත්ර"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "ක්ෂේත්ර"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "ඇතුල් කල පේළි ගණන"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "මුළු එකතුව"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "පූරණය කෙරෙමින්"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "ප්රතිපූරණය"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "ආනයනය"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "විමසුම යාවත්කාලීන කරන්න"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "ලියකියවිලි"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "තොරතුරු..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "සත්යාපනය"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "අවලංගු කරන්න"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "පූරණය කෙරෙමින්"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "ඉල්ලීම පිරිසැකසෙමින්"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "තීරුව හලමින්"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "ප්රාථමික මූලය එක් කරමින්"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "දත්තගබඩාව පූරණය"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් තිබිය යුතුයි"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "වගුව සාදන්න"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "වගු භාවිතා කරන්න"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "සුචිය එක් කරන්න"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "කොටු සැලැස්ම පෙන්වන්න"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "සොයමින්"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "සෙවුම් ප්රතිඵල සඟවන්න"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "සෙවුම් ප්රතිඵල පෙන්වන්න"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "පිරික්සමින්"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "ඉවත් කෙරෙමින්"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත"
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "විමසුම් කවුළුව සඟවන්න"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "විමසුම් කවුළුව පෙන්වන්න"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "පේළි කිසිවක් තෝරගෙන නැත"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "වෙනස් කරන්න"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "SQL execution"
msgid "Query execution time"
msgstr "SQL ක්රියාත්මක කිරීම"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1669,46 +1701,46 @@ msgstr "SQL ක්රියාත්මක කිරීම"
msgid "Save"
msgstr "සුරකින්න"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL විමසුම"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL විමසුම"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "නොසලකන්න"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "තීරයක් එක් කරන්න"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "සම්බන්දිත මූලය තෝරන්න"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "අන්ය මූලය තෝරන්න"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "කරුණාකර ප්රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "පෙන්වීම සඳහා තීරය තෝරාගන්න"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1717,61 +1749,61 @@ msgstr ""
"යන්න?"
# අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "ක්ෂේත්රයට අභිරුචියක් එක් කරන්න "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "තේරීමට ක්ලික් කරන්න"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "මුරපදය උත්පාදනය කරන්න"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "උත්පාදනය කරන්න"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "මුරපදය වෙනස් කරන්න"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "තවත්"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1781,27 +1813,27 @@ msgstr ""
"අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", නවතම ස්ථායි අනුවාදය:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "යාවත්කාලීන"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "තෝරන්න"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "පෙර"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1809,149 +1841,149 @@ msgid "Next"
msgstr "මීලඟ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "අද දින"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "ජනවාරි"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "පෙබරවාරි"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "මාර්තු"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "අප්රේල්"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "මැයි"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "ජුනි"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "ජූලි"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "අගෝස්තු"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "සැප්තැම්බර්"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "ඔක්තෝම්බර්"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "නොවැම්බර්"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "දෙසැම්බර්"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "ජුනි"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "දෙසැම්බර්"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "ඉරිදා"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "සඳුදා"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "අඟහරුවදා"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "බදාදා"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "බ්රහස්පතින්දා"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "සිකුරාදා"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "සෙනසුරාදා"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1959,84 +1991,84 @@ msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "සඳුදා"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "අඟහ"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "බ්රහස්"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "සිකුරා"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "සෙනසු"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "ඉරි"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "සඳු"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "අඟ"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "බදා"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "බ්රහ"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "සිකු"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "සෙන"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "සති"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "පැය"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "මිනිත්තු"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "තත්පර"
@@ -2291,8 +2323,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Probably reason of this is that you did not create configuration file. You "
"might want to use %1$ssetup script%2$s to create one."
@@ -2434,7 +2466,7 @@ msgstr "හවුල්"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "වගු"
@@ -2513,7 +2545,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "සේවාදායකය"
@@ -2562,7 +2594,7 @@ msgid "Documentation"
msgstr "ලියකියවිලි"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL විමසුම"
@@ -2600,7 +2632,7 @@ msgid "Create PHP Code"
msgstr "PHP කේත සාදන්න"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "අලුත් කරන්න"
@@ -2621,7 +2653,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "පේළිගත"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2730,7 +2762,7 @@ msgstr "තේරීමට ක්ලික් කරන්න"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5226,12 +5258,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5438,7 +5470,7 @@ msgstr "යතුර අනුව තෝරන්න"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5509,7 +5541,7 @@ msgid "The row has been deleted"
msgstr "පෙළ ඉවත් කරන ලදි"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Kill"
@@ -5525,7 +5557,7 @@ msgstr "පේළි පෙන්වමින්"
msgid "total"
msgstr "මුළු එකතුව"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි"
@@ -5598,7 +5630,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -5958,8 +5990,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6065,28 +6097,28 @@ msgid "Display MIME types"
msgstr "Available MIME types"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "දායකයා"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "උත්පාදන වේලාව"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "සේවාදායකයේ අනුවාදය"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP අනුවාදය"
@@ -6284,51 +6316,51 @@ msgid "Generated by"
msgstr "උත්පාදනය කරන ලද්දේ"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "දත්තගබඩා නොමැත"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "%s සඳහා දත්ත නොමැත"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "දත්තගබඩා නොමැත"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "සැකිල්ල පමණයි"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6781,14 +6813,14 @@ msgid "Slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "විචල්යය"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "අගය"
@@ -7008,7 +7040,7 @@ msgid "Returns"
msgstr "වගු විකල්ප"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "වේලාව"
@@ -7500,12 +7532,12 @@ msgid "Synchronize"
msgstr "සමමුහුර්ත කරන්න"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "ද්වීමය ලොගය"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "විචල්යනයන්"
@@ -7563,11 +7595,11 @@ msgstr "දින දර්ශනය"
msgid "Columns"
msgstr "තීර නම්"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
@@ -7965,8 +7997,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %"
-"sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
+"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
+"%sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
#: libraries/user_preferences.lib.php:112
msgid "Could not save configuration"
@@ -8012,7 +8044,7 @@ msgstr "ප්රෝටකෝල අනුවාදය"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "භාවිතා කරන්නා"
@@ -8448,17 +8480,17 @@ msgstr "ගොනුව නොපවතියි"
msgid "Select binary log to view"
msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "ගොනු"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න"
@@ -8845,8 +8877,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම්
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්රසාද ලබාගනුයේ MySQL හි වරප්රසාද වගුවෙනි. "
"සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට "
@@ -8972,7 +9004,7 @@ msgstr "Master සේවාදායකය %s වෙත සාර්ථකව
msgid "This server is configured as master in a replication process."
msgstr "මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක master ලෙස සකසා ඇත."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Master හි තත්වය පෙන්වන්න"
@@ -9113,139 +9145,139 @@ msgstr ""
"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් "
"කිරීමට ඔබ කැමතිද?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "හසුරුවනය"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "විමසුම් කෑෂ්"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "ත්රෙඩයන්"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "තාවකාලික දත්ත"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "ප්රමාදිත ඇතුළු කිරීම්"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "යතුරු කෑෂ් කිරීම"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "ඈඳුම්"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "තේරීම"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "උපදායකයන් පෙන්වන්න"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "ධාවන කාල තොරතුරු"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "slave තත්ව වගුව බලන්න"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "අලුත් කරන්න"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "මුරපදය වෙනස් නොකරන්න"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "විමසුම් වර්ගය"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "ශ්රිත"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9260,46 +9292,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "ඇරඹුම් පිටුව රිසි සේ සකසන්න"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "පැයකට"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "මිනිත්තුවකට"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "තප්පරයකට"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "ප්රකාශය"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9307,15 +9339,15 @@ msgstr ""
"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master හා slave "
"ලෙස ක්රියාකරයි."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master ලෙස ක්රියාකරයි."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී slave ලෙස ක්රියාකරයි."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9323,11 +9355,11 @@ msgstr ""
"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න"
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "අනුරූ කරණයේ තත්වය"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9335,47 +9367,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "ලබන ලද"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "යවන ලද"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "උපරිම සමගාමී සම්බන්ධතා"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "අසාර්ථක උත්සාහයන්"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "අත්හැර දමන ලදි"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "හැඳුනුම් අංකය"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "විධානය"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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 fsync() writes done to the log file."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9385,16 +9417,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9406,11 +9438,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9418,7 +9450,7 @@ msgstr ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9426,7 +9458,7 @@ msgstr ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9434,23 +9466,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "The number of INSERT DELAYED rows written."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "The number of executed FLUSH statements."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "The number of internal COMMIT statements."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9460,7 +9492,7 @@ msgstr ""
"table with a given name. This is called discovery. Handler_discover "
"indicates the number of time tables have been discovered."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9470,7 +9502,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9478,7 +9510,7 @@ 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:1153
+#: server_status.php:1195
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 "
@@ -9488,7 +9520,7 @@ msgstr ""
"incremented if you are querying an index column with a range constraint or "
"if you are doing an index scan."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9496,7 +9528,7 @@ msgstr ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9508,7 +9540,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9520,36 +9552,36 @@ msgstr ""
"tables are not properly indexed or that your queries are not written to take "
"advantage of the indexes you have."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "නිදහස් පිටු ගණන."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9559,7 +9591,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9571,11 +9603,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9583,7 +9615,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9591,11 +9623,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9603,7 +9635,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9617,55 +9649,55 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9673,35 +9705,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9709,51 +9741,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "කියවන ලද පිටු ගණන."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "ලියන ලද පිටු ගණන."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9761,7 +9793,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -9769,7 +9801,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -9779,11 +9811,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9793,15 +9825,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9811,17 +9843,17 @@ msgstr ""
"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."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9829,38 +9861,38 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9872,7 +9904,7 @@ msgstr ""
"cache size. The query cache uses a least recently used (LRU) strategy to "
"decide which queries to remove from the cache."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9880,19 +9912,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9900,11 +9932,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9912,7 +9944,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9920,15 +9952,15 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9936,11 +9968,11 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9948,13 +9980,13 @@ msgstr ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -9964,23 +9996,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "The number of sorted rows."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -9992,7 +10024,7 @@ msgstr ""
"should first optimize your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10002,11 +10034,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "The number of currently open connections."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10018,68 +10050,68 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Startup"
msgid "Start Monitor"
msgstr "ඇරඹුම්"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "සුචිය එක් කරන්න"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "අලුත් කරන්න"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "ක්ෂේත්ර තීර එක් කරන්න/ඉවත් කරන්න"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "දෝෂ කළමනාකරණය:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "පෙරනිමි අගය ප්රතිස්ථාපනය කරන්න"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10088,7 +10120,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10096,7 +10128,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10108,7 +10140,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "විමසුම් වර්ගය"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10222,7 +10244,7 @@ msgid_plural "%d seconds"
msgstr[0] "තත්පර"
msgstr[1] "තත්පර"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10645,34 +10667,34 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em]
msgid "Browse foreign values"
msgstr "අන්ය අගයන් පිරික්සන්න"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP කේත ලෙස පෙන්වමින්"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL විමසුම පෙන්වමින්"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "තහවුරු කරන ලද SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "ලේබලය"
@@ -11445,9 +11467,9 @@ msgid "Current amount of Questions: %s"
msgstr "වත්මන් සම්බන්දතාව"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "SQL විමසුම් පෙන්වන්න"
#: po/advisory_rules.php:16
@@ -11469,7 +11491,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Flush query cache"
#: po/advisory_rules.php:21
@@ -11654,12 +11676,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "අවකාශ භාවිතය"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11716,8 +11732,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11826,9 +11842,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11846,13 +11862,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Allows creating temporary tables."
#: po/advisory_rules.php:113
#, php-format
@@ -11884,8 +11902,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11905,7 +11925,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11928,7 +11948,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11937,7 +11957,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11950,7 +11970,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11959,8 +11979,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11991,11 +12011,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s වගු"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12022,8 +12039,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s වගු"
#: po/advisory_rules.php:152
msgid ""
@@ -12064,8 +12084,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12085,8 +12107,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sort buffer size"
#: po/advisory_rules.php:168
#, php-format
@@ -12094,7 +12118,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12114,7 +12138,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "වගුව සාදන්න"
#: po/advisory_rules.php:176
@@ -12135,10 +12159,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "විවෘත වගු පෙන්වන්න"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
#: po/advisory_rules.php:181
msgid ""
@@ -12161,7 +12185,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
#: po/advisory_rules.php:186
@@ -12208,7 +12232,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "යතුරු කෑෂ් කිරීම"
#: po/advisory_rules.php:201
@@ -12226,8 +12250,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "අවධානය අක්රීයයි."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12285,10 +12311,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "සම්බන්ධතා"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "උපරිම සමගාමී සම්බන්ධතා"
#: po/advisory_rules.php:221
msgid ""
@@ -12311,9 +12337,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Force SSL connection"
-msgid "% aborted connections"
-msgstr "SSL සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න"
+#| msgid "max. concurrent connections"
+msgid "Percentage of aborted connections"
+msgstr "උපරිම සමගාමී සම්බන්ධතා"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12335,7 +12361,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "උපරිම සමගාමී සම්බන්ධතා"
#: po/advisory_rules.php:231
@@ -12349,8 +12375,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12371,7 +12399,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
#: po/advisory_rules.php:243
@@ -12398,8 +12426,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffer pool size"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12511,6 +12541,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "අවකාශ භාවිතය"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "විවෘත වගු පෙන්වන්න"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "සම්බන්ධතා"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "SSL සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "භාවිතය"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "භාවිතය"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/sk.po b/po/sk.po
index a0286fb4e3..c4baacb94d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-27 15:32+0200\n"
"Last-Translator: Martin Lacina \n"
"Language-Team: slovak \n"
+"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Zobraziť všetko"
@@ -47,7 +47,7 @@ msgstr "Hľadať"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Kľúčový názov"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Popis"
@@ -201,7 +201,7 @@ msgstr "Linkovať na"
msgid "Comments"
msgstr "Komentáre"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Komentáre"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nie"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Nie"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Upraviť alebo exportovať relačnú schému"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -616,8 +616,8 @@ msgstr "Sledovanie nie je aktívne."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
@@ -628,7 +628,7 @@ msgstr "Pohľad"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikácia"
@@ -670,7 +670,7 @@ msgstr "Zvoliť neoptimálne"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportovať"
@@ -732,10 +732,10 @@ msgstr "Sledované tabuľky"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -755,7 +755,7 @@ msgstr "Aktualizované"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Stav"
@@ -854,8 +854,8 @@ msgstr "Výpis bol uložený do súboru %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
@@ -900,7 +900,7 @@ msgstr "Záznam z obľúbených bol zmazaný."
msgid "Showing bookmark"
msgstr "Zobrazujem obľúbený príkaz"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Príkaz %s bol zaradený medzi obľúbené"
@@ -952,15 +952,15 @@ msgstr "Kliknite pre vybranie"
msgid "Click to unselect"
msgstr "Kliknite pre zrušenie vyberu"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Skutočne chcete vykonať príkaz "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte sa ZRUŠIŤ celú databázu!"
@@ -1036,12 +1036,12 @@ msgstr "Načítavam oprávnenia"
msgid "Removing Selected Users"
msgstr "Odstránenie vybraných používateľov"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Zavrieť"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1049,15 +1049,15 @@ msgstr "Zavrieť"
msgid "Edit"
msgstr "Upraviť"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Živý graf prevádzky"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Živý graf spojení/procesov"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Živý graf dopytov"
@@ -1068,13 +1068,13 @@ msgstr "Statické data"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Celkom"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Ostatné"
@@ -1104,7 +1104,7 @@ msgstr "Sieťová prevádzka (v KiB)"
msgid "Connections since last refresh"
msgstr "Spojení od posledného obnovenia"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesy"
@@ -1124,172 +1124,204 @@ msgstr "Spojení od posledného obnovenia"
msgid "Questions (executed statements by the server)"
msgstr "Dopyty (príkazy vykonané na serveri)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Štatistika dopytov"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Nepodarilo sa načítať konfiguračný súbor"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Využitie CPU"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Systémová pamäť"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Stránkovacia oblasť"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Priemerné vyťaženie"
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "System memory"
msgid "Total memory"
msgstr "Systémová pamäť"
-#: js/messages.php:101
+#: js/messages.php:108
#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
msgstr "Systémová pamäť"
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Vyrovnávacia Pamäť"
-#: js/messages.php:103
+#: js/messages.php:110
#, fuzzy
#| msgid "System memory"
msgid "Free memory"
msgstr "Systémová pamäť"
-#: js/messages.php:104
+#: js/messages.php:111
#, fuzzy
#| msgid "System memory"
msgid "Used memory"
msgstr "Systémová pamäť"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Celkom"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Prázdnych stránok"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Prijaté"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Spojenia"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Dopyty"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Vyťaženie"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Nastavenia"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Odstrániť graf"
-#: js/messages.php:121
+#: js/messages.php:128
#, fuzzy
#| msgid "Edit labels and series"
msgid "Edit title and labels"
msgstr "Upraviť popisy a série"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Pridať graf do mriežky"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Pridajte prosím aspoň jednu hodnotu do série"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Žiadny"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log a slow_query_log sú povolené."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log je povolený."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log je povolený."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log a general_log sú zakázané."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1297,363 +1329,363 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
msgstr "Uložiť výstup do suboru"
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Zapnuté"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Vypnuté"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "Spravovať svoje nastavenia"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "Ďalšie nastavenia"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Chart title"
msgid "Chart Title"
msgstr "Názov grafu"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Prejsť do databázy"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filter"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Počet vložených riadkov"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Celkom"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Načítanie"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Znovu načítať"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Import"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Aktualizovať dopyt"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentácia"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Podrobnosti"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Overenie"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Zrušiť"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Načítanie"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Prebieha spracovanie požiadavka"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Chyba pri spracovanie požiadavku"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Odstraňujem stĺpce"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Pridavam primarny kľúč"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Premenovávam databázy"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Znovu načítať databázu"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopírujem databázu"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Mením znakovú sadu"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Vytvoriť tabuľku"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Pridať tabuľku"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Skryť indexy"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Zobraziť indexy"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Vyhľadávam"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Skryť výsledky vyhľadávania"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Zobraziť výsledky vyhľadávania"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Prechádzať"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Odstraňujem"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Skryť vyhľadávacie pole"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Zobrazit vyhľadávacie pole"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nebol vybraný žiadny riadok"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Zmeniť"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maximálny čas behu"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1661,42 +1693,42 @@ msgstr "Maximálny čas behu"
msgid "Save"
msgstr "Uložiť"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Skryť parametre vyhľadávania"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Zobraziť parametre vyhľadávania"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorovať"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Pridať stĺpec"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Zvoliť odkazovaný kľúč"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Zvoliť cudzí kľúč"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Zoľte, prosím, primárny alebo unikátny kľúč"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Zvoľte, ktoré polia zobraziť"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1704,59 +1736,59 @@ msgstr ""
"Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. "
"Chcete pokračovať?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Pridať voľbu pre stĺpec "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Usporiadajte pretiahnutím"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Kliknite pre zoradenie"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Kliknite pre označenie/odznačenie"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Kliknite na šípku pre zmenu viditeľnosti stĺpca"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Vytvoriť heslo"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Vytvoriť"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Zmeniť heslo"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Viac"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1766,27 +1798,27 @@ msgstr ""
"Najnovšia verzia je %s a bola vydaná %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", posledná stabilná verzia:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "aktuálne"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Hotovo"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Predchádzajúci"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1794,149 +1826,149 @@ msgid "Next"
msgstr "Ďalší"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Dnes"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Január"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Február"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Marec"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Apríl"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Máj"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Jún"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Júl"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "August"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "September"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Október"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "November"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Nedeľa"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Pondelok"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Utorok"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Streda"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Štvrtok"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Piatok"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1944,84 +1976,84 @@ msgid "Sun"
msgstr "Ne"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Ut"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Št"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Pi"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "týž"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minúty"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekundy"
@@ -2285,8 +2317,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@@ -2428,7 +2460,7 @@ msgstr "zdieľaný"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabuľky"
@@ -2507,7 +2539,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2556,7 +2588,7 @@ msgid "Documentation"
msgstr "Dokumentácia"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL dopyt"
@@ -2594,7 +2626,7 @@ msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Obnoviť"
@@ -2615,7 +2647,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Upraviť tu"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilovanie"
@@ -2721,7 +2753,7 @@ msgstr "Kliknite pre prepnutie"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5338,8 +5370,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@@ -5544,7 +5576,7 @@ msgstr "Zoradiť podľa kľúča"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5608,7 +5640,7 @@ msgid "The row has been deleted"
msgstr "Riadok bol zmazaný"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Zabiť"
@@ -5624,7 +5656,7 @@ msgstr "Zobrazené riadky"
msgid "total"
msgstr "celkovo"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Dopyt zabral %01.4f s"
@@ -5696,7 +5728,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávacia Pamäť"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -6059,8 +6091,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6154,28 +6186,28 @@ msgid "Display MIME types"
msgstr "Zobraziť MIME typy"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Hostiteľ"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Vygenerované"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Verzia serveru"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Verzia PHP"
@@ -6371,53 +6403,53 @@ msgid "Generated by"
msgstr "Vygenerované"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Prejsť do databázy"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Chýba hodnota pre %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Prejsť do tabuľky"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Iba štruktúru"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Prejsť na Prejsť na pohľad"
@@ -6865,14 +6897,14 @@ msgid "Slave status"
msgstr "Zobraziť stav podriadených hostov"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Premenná"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Hodnota"
@@ -7094,7 +7126,7 @@ msgid "Returns"
msgstr "Návratový typ"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Čas"
@@ -7564,12 +7596,12 @@ msgid "Synchronize"
msgstr "Synchronizovať"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binárny log"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Premenné"
@@ -7622,11 +7654,11 @@ msgstr "Vyčistiť"
msgid "Columns"
msgstr "Stĺpce"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Pridať tento SQL dopyt do obľúbených"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Dovoliť používať túto položku všetkým používateľom"
@@ -7727,8 +7759,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
-"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
-"sdocumentation%s."
+"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
+"%sdocumentation%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8025,7 +8057,7 @@ msgstr "Verzia protokolu"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Používateľ"
@@ -8421,8 +8453,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %"
-"sNastavovacieho skriptu%s."
+"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím "
+"%sNastavovacieho skriptu%s."
#: prefs_manage.php:300
msgid "Save to browser's storage"
@@ -8462,17 +8494,17 @@ msgstr "Súbor neexistuje"
msgid "Select binary log to view"
msgstr "Vyberte binárny log na zobrazenie"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Súbory"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Zobraziť skrátene dopyty"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Zobraziť kompletné dopyty"
@@ -8862,13 +8894,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
-"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
-"sznovunačítanie práv%s predtým ako budete pokračovať."
+"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
+"%sznovunačítanie práv%s predtým ako budete pokračovať."
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -8992,7 +9024,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Zobraziť stav master replikácie"
@@ -9133,132 +9165,132 @@ msgstr ""
"Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli "
"by ste ho nakonfigurovať?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Vlákno %s bol úspešne zabité."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Manipulačná Rutina"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Vyrovnávacia pamäť príkazov"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Počet vlákien"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Dočasné dáta"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Odložené vloženia"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Vyrovnávacia pamäť kľúčov"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Zjednotenia"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Zoraďovanie"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordinátor transakcií"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Vyprázdniť (uzavrieť) všetky tabuľky"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Zobraziť podriadené hosty"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Zobraziť stav podriadených hostov"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Stav serveru"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh rate:"
msgid "Refresh rate: "
msgstr "Obnovovacia frekvencia:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Obsahujúca slovo:"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Súvisiace odkazy:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Typ dopytu"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Úvod"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9273,46 +9305,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Prispôsobenie úvodnej stránky"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "za hodinu"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "za minútu"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "za sekundu"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Údaj"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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 "Tento server beží %s. Bol spustený %s."
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9320,18 +9352,18 @@ msgstr ""
"Tento server je nakonfigurovaný ako master a slave v "
"replikačnom procese."
-#: server_status.php:911
+#: server_status.php:953
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:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Tento MYSQL server pracuje ako slave v replikačnom procese."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9339,11 +9371,11 @@ msgstr ""
"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Stav replikácie"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9351,45 +9383,45 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Prijaté"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Odoslané"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "max. súčasných pripojení"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Nepodarených pokusov"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Prerušené"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Príkaz"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9399,16 +9431,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:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9420,11 +9452,11 @@ msgstr ""
"hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na "
"disk."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Počet dočasných súborov vytvorených servrom mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9432,7 +9464,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:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9440,7 +9472,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:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9448,23 +9480,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Počet riadkov vložených príkazom INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Počet vykonaných príkazov FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Počet interných príkazov COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9474,7 +9506,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:1151
+#: server_status.php:1193
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, "
@@ -9484,7 +9516,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:1152
+#: server_status.php:1194
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."
@@ -9492,7 +9524,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:1153
+#: server_status.php:1195
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 "
@@ -9502,7 +9534,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:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9511,7 +9543,7 @@ msgstr ""
"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... "
"DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9524,7 +9556,7 @@ msgstr ""
"kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne "
"nevyužívajú kľúče."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9536,35 +9568,35 @@ msgstr ""
"tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú "
"dostupné indexy."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Počet interných príkazov ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Počet nečistých stránok."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Počet voľných stránok."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9574,7 +9606,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:1165
+#: server_status.php:1207
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 "
@@ -9586,11 +9618,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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9598,7 +9630,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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9606,11 +9638,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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Počet požiadavkov na logické načítavanie."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9618,7 +9650,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:1171
+#: server_status.php:1213
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 "
@@ -9632,88 +9664,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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Počet vykonaných fsync() operácií."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Aktuálny počet prebiehajúcich fsync() operácií."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Počet aktuálne prebiehajúcich načítavaní."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Počet aktuálne prebiehajúcich zápisov."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Množstvo už načítaných dát, v bajtoch."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Celkový počet načítaní dát."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Celkový počet zápisov dát."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Množstvo už zapísaných dát, v bajtoch."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Počet požiadaviek na zápis do logovacieho súboru."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Počet fyzických zápisov do logovacieho súboru."
-#: server_status.php:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Počet prebiehajúcich zápisov do logovacieho súboru."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Množstvo bajtov zapísaných do logovacieho súboru."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Počet vytvorených stránok."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9722,51 +9754,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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Počet načítaných stránok."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Počet zapísaných stránok."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Počet zámkov na riadky, na ktoré sa čaká."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet riadkov odstránených z InnoDB tabuliek."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet riadkov vložených do InnoDB tabuliek."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Počet načítaných riadkov z InnoDB tabuliek."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet upravených riadkov v InnoDB tabuľkách."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9775,7 +9807,7 @@ msgstr ""
"neboli zapísané na disk. Predtým sa táto hodnota nazývala "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9783,7 +9815,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:1205
+#: server_status.php:1247
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 "
@@ -9792,11 +9824,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9807,15 +9839,15 @@ 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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9826,17 +9858,17 @@ msgstr ""
"požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované "
"žiadne príkazy."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9844,38 +9876,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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Počet otvorených súborov."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Počet práve otvorených tabuliek."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
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:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Počet zásahov vyrovnávacej pamäti."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Počet príkazov pridaných do vyrovnávacej pamäti."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9887,7 +9919,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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9895,19 +9927,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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti."
-#: server_status.php:1224
+#: server_status.php:1266
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:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stav failsafe replikácie (zatiaľ neimplementované)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9915,12 +9947,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9929,7 +9961,7 @@ msgstr ""
"(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy "
"vašich tabuliek.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9937,15 +9969,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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9953,13 +9985,13 @@ msgstr ""
"Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o "
"znovuobnovenie transakcie."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9967,14 +9999,14 @@ msgstr ""
"Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota "
"slow_launch_time."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -9984,23 +10016,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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Počet rozsahom obmedzených zoraďovaní."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Počet zoradených riadkov."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10012,7 +10044,7 @@ msgstr ""
"najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo "
"použiť replikáciu."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10022,11 +10054,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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Počet momentálne otvorených spojení."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10037,69 +10069,69 @@ 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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Počet nespiacich vlákien."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Štart"
-#: server_status.php:1393
+#: server_status.php:1435
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Úvod"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "Odstrániť index/indexy"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Obnoviť"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Stĺpce s textovou oblasťou"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Obnoviť východziu hodnotu"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
#| msgid "Introduction"
msgid "Monitor Instructions"
msgstr "Úvod"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10108,7 +10140,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10116,7 +10148,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10128,7 +10160,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Typ dopytu"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10241,7 +10263,7 @@ msgstr[0] "Sekundy"
msgstr[1] "Sekundy"
msgstr[2] "Sekundy"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10657,34 +10679,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Prejsť hodnoty cudzích kľúčov"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Zobrazujem ako PHP kód"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Zobrazujem SQL dotaz"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Skontrolované SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexami v tabuľke `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Názov"
@@ -11442,9 +11464,9 @@ msgid "Current amount of Questions: %s"
msgstr "Súčasné pripojenie"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Zobraziť SQL dopyty"
#: po/advisory_rules.php:16
@@ -11466,7 +11488,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
#: po/advisory_rules.php:21
@@ -11653,12 +11675,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Zabrané miesto"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11715,8 +11731,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11825,9 +11841,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Povolí vytváranie dočasných tabuliek."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11845,13 +11861,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Povolí vytváranie dočasných tabuliek."
#: po/advisory_rules.php:113
#, php-format
@@ -11883,8 +11901,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Neboli nájdené žiadne rutiny."
#: po/advisory_rules.php:121
#, fuzzy
@@ -11904,7 +11924,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11927,7 +11947,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11936,7 +11956,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11949,8 +11969,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Kde zobraziť linky riadkov tabuľky"
#: po/advisory_rules.php:136
#, fuzzy
@@ -11960,8 +11982,8 @@ msgstr "Kde zobraziť linky riadkov tabuľky"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11993,10 +12015,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabuľka"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Kde zobraziť linky riadkov tabuľky"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12023,8 +12044,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabuľka"
#: po/advisory_rules.php:152
msgid ""
@@ -12065,8 +12089,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Veľkosť zoraďovacej pamäte"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12086,8 +12112,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Veľkosť zoraďovacej pamäte"
#: po/advisory_rules.php:168
#, php-format
@@ -12095,7 +12123,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12115,7 +12143,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Vytvoriť tabuľku"
#: po/advisory_rules.php:176
@@ -12136,10 +12164,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Zobraziť otvorené tabuľky"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Formát importovaného súboru"
#: po/advisory_rules.php:181
msgid ""
@@ -12162,7 +12190,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Formát importovaného súboru"
#: po/advisory_rules.php:186
@@ -12209,7 +12237,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Vyrovnávacia pamäť kľúčov"
#: po/advisory_rules.php:201
@@ -12227,8 +12255,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Sledovanie nie je aktívne."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12286,10 +12316,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Spojenia"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Trvalé spojenia"
#: po/advisory_rules.php:221
msgid ""
@@ -12312,9 +12342,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Komprimovať pripojenie"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Trvalé spojenia"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12336,7 +12366,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Trvalé spojenia"
#: po/advisory_rules.php:231
@@ -12350,8 +12380,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Formát importovaného súboru"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12372,7 +12404,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Formát importovaného súboru"
#: po/advisory_rules.php:243
@@ -12399,8 +12431,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Veľkosť vyrovnávacej pamäte"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12512,6 +12546,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Zabrané miesto"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Zobraziť otvorené tabuľky"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Spojenia"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Komprimovať pripojenie"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Využitie"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Využitie"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS pracovný zošit"
@@ -12765,8 +12823,8 @@ msgstr ""
#~ msgid "Imported file compression will be automatically detected from: %s"
#~ msgstr ""
-#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
-#~ "s"
+#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
+#~ "%s"
#~ msgid "Add into comments"
#~ msgstr "Pridať do komentárov"
diff --git a/po/sl.po b/po/sl.po
index 6a2e65d182..b709ca437b 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
-"PO-Revision-Date: 2011-07-22 11:14+0200\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
+"PO-Revision-Date: 2011-08-11 18:40+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Pokaži vse"
@@ -47,7 +47,7 @@ msgstr "Iskanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Opis"
@@ -201,7 +201,7 @@ msgstr "Povezave z"
msgid "Comments"
msgstr "Pripombe"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Pripombe"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ne"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Uredi ali izvozi relacijsko shemo"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -416,10 +416,9 @@ msgid "You have to choose at least one column to display"
msgstr "Za prikaz morate izbrati morate vsaj en stolpec"
#: db_qbe.php:186
-#, fuzzy, php-format
-#| msgid "visual builder"
+#, php-format
msgid "Switch to %svisual builder%s"
-msgstr "vidni graditelj"
+msgstr "Preklopi na %svidni graditelj%s"
#: db_qbe.php:222 libraries/db_structure.lib.php:90
#: libraries/display_tbl.lib.php:955
@@ -619,8 +618,8 @@ msgstr "Sledenje ni aktivno."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -630,7 +629,7 @@ msgstr "Pogled"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Podvojevanje"
@@ -672,7 +671,7 @@ msgstr "Preveri prekoračene"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvozi"
@@ -734,10 +733,10 @@ msgstr "Sledene tabele"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -757,7 +756,7 @@ msgstr "Posodobljeno"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Stanje"
@@ -856,8 +855,8 @@ msgstr "Dump je shranjen v datoteko %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@@ -901,7 +900,7 @@ msgstr "Zaznamek je odstranjen."
msgid "Showing bookmark"
msgstr "Prikazovanje zaznamka"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Zaznamek %s je ustvarjen"
@@ -953,15 +952,15 @@ msgstr "Kliknite za označitev"
msgid "Click to unselect"
msgstr "Kliknite za odznačitev"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ali res želite "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
@@ -1038,12 +1037,12 @@ msgstr "Ponovno nalaganje privilegijev"
msgid "Removing Selected Users"
msgstr "Odstranjevanje izbranih uporabnikov"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Zapri"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1051,15 +1050,15 @@ msgstr "Zapri"
msgid "Edit"
msgstr "Uredi"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Grafikon prometa v živo"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Grafikon povezav/procesov v živo"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Grafikon poizvedb v živo"
@@ -1070,13 +1069,13 @@ msgstr "Statični podatki"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Skupaj"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Drugo"
@@ -1106,7 +1105,7 @@ msgstr "Promet strežnika (v KiB)"
msgid "Connections since last refresh"
msgstr "Povezav od zadnje osvežitve"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesi"
@@ -1124,176 +1123,186 @@ msgstr "Vprašanja od zadnje osvežitve"
msgid "Questions (executed statements by the server)"
msgstr "Vprašanja (izvedene poizvedbe strežnika)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Statistika poizvedb"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Ne morem prebrati konfiguracijske datoteke"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Predpomnilnik poizvedb"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Predpomnilnik poizvedb"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Predpomnilnik poizvedb"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Uporaba sistemskega CPU"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Sistemski pomnilnik"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Sistemska izmenjava"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Povprečna obremenitev"
-#: js/messages.php:100
-#, fuzzy
-#| msgid "System memory"
-msgid "Total memory"
-msgstr "Sistemski pomnilnik"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "System memory"
-msgid "Cached memory"
-msgstr "Sistemski pomnilnik"
-
-#: js/messages.php:102
-#, fuzzy
-#| msgid "Buffer Pool"
-msgid "Buffered memory"
-msgstr "Zaloga medpomnilnika"
-
-#: js/messages.php:103
-#, fuzzy
-#| msgid "System memory"
-msgid "Free memory"
-msgstr "Sistemski pomnilnik"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "System memory"
-msgid "Used memory"
-msgstr "Sistemski pomnilnik"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Total"
-msgid "Total Swap"
-msgstr "Skupaj"
-
#: js/messages.php:107
-msgid "Cached Swap"
-msgstr ""
+msgid "Total memory"
+msgstr "Skupni pomnilnik"
#: js/messages.php:108
-msgid "Used Swap"
-msgstr ""
+msgid "Cached memory"
+msgstr "Predpomnjen pomnilnik"
#: js/messages.php:109
-#, fuzzy
-#| msgid "Free pages"
-msgid "Free Swap"
-msgstr "Proste strani"
+msgid "Buffered memory"
+msgstr "Medpomnjen pomnilnik"
+
+#: js/messages.php:110
+msgid "Free memory"
+msgstr "Prost pomnilnik"
#: js/messages.php:111
+msgid "Used memory"
+msgstr "Uporabljen pomnilnik"
+
+#: js/messages.php:113
+msgid "Total Swap"
+msgstr "Skupna izmenjava"
+
+#: js/messages.php:114
+msgid "Cached Swap"
+msgstr "Predpomnjena izmenjava"
+
+#: js/messages.php:115
+msgid "Used Swap"
+msgstr "Medpomnjena izmenjava"
+
+#: js/messages.php:116
+msgid "Free Swap"
+msgstr "Prosta izmenjava"
+
+#: js/messages.php:118
msgid "Bytes sent"
-msgstr ""
+msgstr "Poslanih bajtov"
-#: js/messages.php:112
-#, fuzzy
-#| msgid "Received"
+#: js/messages.php:119
msgid "Bytes received"
-msgstr "Prejeto"
+msgstr "Prejetih bajtov"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Povezave"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Vprašanja"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Promet"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Nastavitve"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Odstrani grafikon"
-#: js/messages.php:121
-#, fuzzy
-#| msgid "Edit labels and series"
+#: js/messages.php:128
msgid "Edit title and labels"
-msgstr "Uredi oznake in serije"
+msgstr "Uredi naslov in oznake"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Dodaj grafikon na mrežo"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Brez"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Nadaljuj nadziranje"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Postoj nadziranje"
-#: js/messages.php:129
-#, fuzzy
-#| msgid "general_log and slow_query_log is enabled."
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log in slow_query_log sta omogočena."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log je omogočen."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log je omogočen."
-#: js/messages.php:132
-#, fuzzy
-#| msgid "slow_query_log and general_log is disabled."
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log in general_log sta onemogočena."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output ni nastavljen na TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output je nastavljen na TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1304,12 +1313,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:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1318,30 +1327,30 @@ msgstr ""
"privzeto vrednost ob ponovnem zagonu strežnika:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Omogoči %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Onemogoči %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Nastavi long_query_time na %d s"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1349,41 +1358,41 @@ msgstr ""
"Teh spremenljivk ne morete spremeniti. Prosimo, prijavite se kot root ali "
"stopite v stik z upravljavcem vaše zbirke podatkov."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Spremeni nastavitve"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Trenutne nastavitve"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Naslov grafikona"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Razlika"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Deljeno z %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Iz počasnega dnevnika"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Iz splošnega dnevnika"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analiziranje in nalaganje dnevnikov. To lahko traja nekaj časa."
-#: js/messages.php:158
+#: js/messages.php:165
#, fuzzy
#| msgid ""
#| "This columns shows the amount of identical queries that are grouped "
@@ -1398,7 +1407,7 @@ msgstr ""
"Primerjano je samo besedilo SQL, zato se lahko drugi atributi poizvedb, npr. "
"začetni čas, razlikujejo."
-#: js/messages.php:159
+#: js/messages.php:166
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,266 +1416,244 @@ msgstr ""
"Ker je izbrano zbiranje poizvedb INSERT, so poizvedbe INSERT iste tabele "
"prav tako zbrane skupaj, ne glede na vstavljene podatke."
-#: js/messages.php:160
+#: js/messages.php:167
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:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Pojdi v dnevniško tabelo"
-#: js/messages.php:163
-#, fuzzy
-#| msgid "Log analysed, but not data found in this time span."
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
"Dnevnik je analiziran, vendar v tem časovnem razponu nisem našel podatkov."
#. l10n: A collection of available filters
-#: js/messages.php:166
-#, fuzzy
-#| msgid "Filter"
+#: js/messages.php:173
msgid "Filters"
-msgstr "Filtriranje"
+msgstr "Filtri"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtriranje"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
-msgstr ""
+msgstr "Filtriraj poizvedbe po besedi/regexp:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
-msgstr ""
+msgstr "Združi poizvedbe, neupoštevajoč spremenljive podatke v stavkih WHERE"
-#: js/messages.php:171
-#, fuzzy
-#| msgid "Number of inserted rows"
+#: js/messages.php:178
msgid "Sum of grouped rows:"
-msgstr "Število vstavljenih vrstic"
+msgstr "Seštevek združenih vrstic:"
-#: js/messages.php:172
-#, fuzzy
-#| msgid "Total"
+#: js/messages.php:179
msgid "Total:"
-msgstr "Skupaj"
+msgstr "Skupaj:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Dnevniki nalaganja"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
-msgstr ""
+msgstr "Osvežitev nadziranja je spodletela"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
-#, fuzzy
-#| msgid "Reload"
+#: js/messages.php:184
msgid "Reload page"
-msgstr "Osveži"
+msgstr "Ponovno naloži stran"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
-msgstr ""
+msgstr "Spremenjene vrstice:"
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Uvozi"
-#: js/messages.php:185
-#, fuzzy
-#| msgid "Update Query"
-msgid "Analyse Query"
-msgstr "Osveži poizvedbo"
-
-#: js/messages.php:189
-#, fuzzy
-#| msgid "Apply a divisor"
-msgid "Advisor system"
-msgstr "Uporabi delitelja"
-
-#: js/messages.php:190
-msgid "Possible performance issues"
-msgstr ""
-
-#: js/messages.php:191
-msgid "Issue"
-msgstr ""
-
#: js/messages.php:192
-#, fuzzy
-#| msgid "Documentation"
-msgid "Recommendation"
-msgstr "Dokumentacija"
-
-#: js/messages.php:193
-#, fuzzy
-#| msgid "Details"
-msgid "Rule details"
-msgstr "Podrobnosti"
-
-#: js/messages.php:194
-#, fuzzy
-#| msgid "Authentication"
-msgid "Justification"
-msgstr "Overovitev"
-
-#: js/messages.php:195
-msgid "Used variable / formula"
-msgstr ""
+msgid "Analyse Query"
+msgstr "Analiziraj poizvedbo"
#: js/messages.php:196
-msgid "Test"
-msgstr ""
+msgid "Advisor system"
+msgstr "Svetovalni sistem"
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:197
+msgid "Possible performance issues"
+msgstr "Morebitni spori zmogljivosti"
+
+#: js/messages.php:198
+msgid "Issue"
+msgstr "Spor"
+
+#: js/messages.php:199
+msgid "Recommendation"
+msgstr "Priporočilo"
+
+#: js/messages.php:200
+msgid "Rule details"
+msgstr "Podrobnosti pravila"
+
+#: js/messages.php:201
+msgid "Justification"
+msgstr "Utemeljitev"
+
+#: js/messages.php:202
+msgid "Used variable / formula"
+msgstr "Uporabljena spremenljivka/formula"
+
+#: js/messages.php:203
+msgid "Test"
+msgstr "Preizkus"
+
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Prekliči"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Nalaganje"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Obdelovanje zahteve"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Napaka v obdelovanju zahteve"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Brisanje stolpca"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Dodajanje primarnega ključa"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "V redu"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Preimenovanje zbirk podatkov"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Ponovno nalaganje zbirke podatkov"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopiranje zbirke podatkov"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Spreminjanje nabora znakov"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabele morajo imeti vsaj en stolpec"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Ustvari tabelo"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Vstavi tabelo"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Skrij indekse"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Pokaži indekse"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Iskanje"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Skrij rezultate iskanja"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Prikaži rezultate iskanja"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Brskanje"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Brisanje"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!"
-#: js/messages.php:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Skrij polje poizvedbe"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Prikaži polje poizvedbe"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Ni izbranih vrstic"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Spremeni"
-#: js/messages.php:245
-#, fuzzy
-#| msgid "Maximum execution time"
+#: js/messages.php:252
msgid "Query execution time"
-msgstr "Najdaljši čas izvajanja"
+msgstr "Čas izvajanja poizvedbe"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1674,42 +1661,40 @@ msgstr "Najdaljši čas izvajanja"
msgid "Save"
msgstr "Shrani"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Skrij iskalne pogoje"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Prikaži iskalne pogoje"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Prezri"
-#: js/messages.php:258
-#, fuzzy
-#| msgid "Add column"
+#: js/messages.php:265
msgid "Add columns"
-msgstr "Dodaj stolpec"
+msgstr "Dodaj stolpce"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Izberite referenčni ključ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Izberite tuji ključ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Prosimo, izberite primarni ključ ali unikatni ključ"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Izberite stolpec za prikaz"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1717,59 +1702,61 @@ msgstr ""
"Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. "
"Želite nadaljevati?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Dodaj možnost za stolpec "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
-msgstr ""
+msgstr "Pritisnite ubežnico (escape) za prekinitev urejanja"
-#: js/messages.php:272
+#: js/messages.php:279
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 ""
+"Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da "
+"želite zapustiti stran, preden shranite podatke?"
-#: js/messages.php:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Povlecite za preureditev"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Kliknite za razvrstitev"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Kliknite za označitev/opustitev"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Kliknite spustno puščico za preklop vidnosti stolpcev"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Ustvari geslo"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Ustvari"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Spremeni geslo"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Več"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1779,262 +1766,255 @@ msgstr ""
"Najnovejša različica je %s, izdana %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", zadnja ustaljena različica:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "posodobljeno"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Končano"
-#: js/messages.php:315
-#, fuzzy
-#| msgid "Prev"
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
-msgstr "Prejšnji"
+msgstr "Prej"
-#: js/messages.php:320
-#, fuzzy
-#| msgid "Next"
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
-msgstr "Naslednji"
+msgstr "Nasl"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Danes"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "januar"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "februar"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "marec"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "april"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "maj"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "junij"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "julij"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "avgust"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "september"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "november"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "nedelja"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "ponedeljek"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "torek"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "sreda"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "četrtek"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "petek"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "sobota"
#. l10n: Short week day name
-#: js/messages.php:376
-#, fuzzy
-#| msgctxt "Short week day name"
-#| msgid "Sun"
+#: js/messages.php:383
msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "sob"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "ne"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "po"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "sr"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "če"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "pe"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "so"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "ted."
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Ura"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekunda"
@@ -2186,10 +2166,8 @@ msgstr[2] "Vstavljene so %1$d vrstice."
msgstr[3] "Vstavljenih je %1$d vrstic."
#: libraries/PDF.class.php:81
-#, fuzzy
-#| msgid "Allows reading data."
msgid "Error while creating PDF:"
-msgstr "Omogoča branje podatkov."
+msgstr "Napaka med ustvarjanjem PDF:"
#: libraries/RecentTable.class.php:107
msgid "Could not save recent table"
@@ -2225,10 +2203,8 @@ msgid "This MySQL server does not support the %s storage engine."
msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s."
#: libraries/Table.class.php:303
-#, fuzzy
-#| msgid "Show slave status"
msgid "unknown table status: "
-msgstr "Prikaži stanje podrejencev"
+msgstr "neznano stanje tabele: "
#: libraries/Table.class.php:1034
msgid "Invalid database"
@@ -2297,8 +2273,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@@ -2408,10 +2384,8 @@ msgid "PBMS get BLOB info failed:"
msgstr "Pridobivanje informacij BLOB PBMS je spodletelo:"
#: libraries/blobstreaming.lib.php:332
-#, fuzzy
-#| msgid "get BLOB Content-Type failed"
msgid "PBMS get BLOB Content-Type failed"
-msgstr "pridobivanje Content-Type BLOB je spodletelo"
+msgstr "Pridobivanje Content-Type BLOB PBMS je spodletelo"
#: libraries/blobstreaming.lib.php:358
msgid "View image"
@@ -2440,7 +2414,7 @@ msgstr "deljeno"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabele"
@@ -2521,7 +2495,7 @@ msgstr ""
"konfiguracijo."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Strežnik"
@@ -2570,7 +2544,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "Poizvedba SQL"
@@ -2608,7 +2582,7 @@ msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Osveži"
@@ -2629,7 +2603,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "V vrstici"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profiliranje"
@@ -2681,8 +2655,6 @@ msgstr "Manjkajoč parameter:"
#: libraries/common.lib.php:2267 libraries/common.lib.php:2270
#: libraries/display_tbl.lib.php:306
-#, fuzzy
-#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Začetek"
@@ -2690,25 +2662,19 @@ msgstr "Začetek"
#: libraries/common.lib.php:2268 libraries/common.lib.php:2271
#: libraries/display_tbl.lib.php:307 server_binlog.php:135
#: server_binlog.php:137
-#, fuzzy
-#| msgid "Previous"
msgctxt "Previous page"
msgid "Previous"
-msgstr "Prejšnji"
+msgstr "Prejšnja"
#: libraries/common.lib.php:2297 libraries/common.lib.php:2300
#: libraries/display_tbl.lib.php:370 server_binlog.php:170
#: server_binlog.php:172
-#, fuzzy
-#| msgid "Next"
msgctxt "Next page"
msgid "Next"
-msgstr "Naslednji"
+msgstr "Naslednja"
#: libraries/common.lib.php:2298 libraries/common.lib.php:2301
#: libraries/display_tbl.lib.php:385
-#, fuzzy
-#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Konec"
@@ -2734,7 +2700,7 @@ msgstr "Kliknite za preklop"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -4085,10 +4051,8 @@ msgid "Memory limit"
msgstr "Omejitev spomina"
#: libraries/config/messages.inc.php:319
-#, fuzzy
-#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
-msgstr "To so povezave Uredi, Uredi v vrstici, Kopiraj in Izbriši"
+msgstr "To so povezave Uredi, Kopiraj in Izbriši"
#: libraries/config/messages.inc.php:320
msgid "Where to show the table row links"
@@ -4244,7 +4208,7 @@ msgstr "Prikaži gumb za pomoč"
#: libraries/config/messages.inc.php:357
msgid "Save all edited cells at once"
-msgstr ""
+msgstr "Shrani vse urejene celice naenkrat"
#: libraries/config/messages.inc.php:358
msgid "Directory where exports can be saved on server"
@@ -4771,16 +4735,12 @@ msgid "Show function fields"
msgstr "Prikaži polja funkcij"
#: libraries/config/messages.inc.php:460
-#, fuzzy
-#| msgid "Where to show the table row links"
msgid "Whether to show hint or not"
-msgstr "Kje naj prikažem povezave vrstic tabel"
+msgstr "Naj prikažem namig ali ne"
#: libraries/config/messages.inc.php:461
-#, fuzzy
-#| msgid "Show indexes"
msgid "Show hint"
-msgstr "Pokaži indekse"
+msgstr "Prikaži namig"
#: libraries/config/messages.inc.php:462
msgid ""
@@ -5360,8 +5320,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@@ -5511,10 +5471,8 @@ msgid "Language"
msgstr "Jezik"
#: libraries/display_tbl.lib.php:401
-#, fuzzy
-#| msgid "Save directory"
msgid "Save edited data"
-msgstr "Mapa za shranjevanje"
+msgstr "Shrani urejene podatke"
#: libraries/display_tbl.lib.php:407
msgid "Restore column order"
@@ -5566,7 +5524,7 @@ msgstr "Uredi po ključu"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5630,7 +5588,7 @@ msgid "The row has been deleted"
msgstr "Vrstica je izbrisana"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Prekini proces"
@@ -5646,7 +5604,7 @@ msgstr "Prikazujem vrstice"
msgid "total"
msgstr "skupaj"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Poizvedba je potrebovala %01.4f s"
@@ -5719,7 +5677,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Zaloga medpomnilnika"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Stanje InnoDB"
@@ -6119,8 +6077,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
"strani PrimeBase XT%s."
@@ -6217,28 +6175,28 @@ msgid "Display MIME types"
msgstr "Prikaži vrste MIME"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Gostitelj"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Čas nastanka"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Različica strežnika"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Različica PHP"
@@ -6414,10 +6372,8 @@ msgid "Stand-in structure for view"
msgstr "Nadomestna struktura pogleda"
#: libraries/export/sql.php:1071
-#, fuzzy
-#| msgid "Allows reading data."
msgid "Error reading data:"
-msgstr "Omogoča branje podatkov."
+msgstr "Napaka med branjem podatkov:"
#: libraries/export/xml.php:19 libraries/import/xml.php:21
msgid "XML"
@@ -6453,56 +6409,50 @@ msgid "Generated by"
msgstr "Ustvaril"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:"
-#: libraries/import.lib.php:1077
-#, fuzzy
-#| msgid "View a structure`s contents by clicking on its name"
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
-msgstr "Oglejte si vsebino strukture s klikom na njeno ime"
+msgstr "Oglejte si vsebine strukture s klikom na njeno ime"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo "
"\"Možnosti\""
-#: libraries/import.lib.php:1079
-#, fuzzy
-#| msgid "Edit its structure by following the \"Structure\" link"
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
-msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\""
+msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Pojdi v zbirko podatkov"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
-#, fuzzy, php-format
-#| msgid "Missing data for %s"
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
+#, php-format
msgid "Edit settings for %s"
-msgstr "Manjkajoči podatki za %s"
+msgstr "Uredi nastavitve za %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Pojdi v tabelo"
-#: libraries/import.lib.php:1107
-#, fuzzy, php-format
-#| msgid "Structure only"
+#: libraries/import.lib.php:1104
+#, php-format
msgid "Structure of %s"
-msgstr "Samo struktura"
+msgstr "Struktura %s"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Pojdi na pogled"
@@ -6959,14 +6909,14 @@ msgid "Slave status"
msgstr "Stanje podrejenca"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Spremenljivka"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Vrednost"
@@ -7099,15 +7049,11 @@ msgid "Execute every"
msgstr "Izvedi vsakih"
#: libraries/rte/rte_events.lib.php:449
-#, fuzzy
-#| msgid "Start"
msgctxt "Start of recurring event"
msgid "Start"
msgstr "Začetek"
#: libraries/rte/rte_events.lib.php:457
-#, fuzzy
-#| msgid "End"
msgctxt "End of recurring event"
msgid "End"
msgstr "Konec"
@@ -7172,7 +7118,7 @@ msgid "Returns"
msgstr "Vrnjeno"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Čas"
@@ -7607,12 +7553,12 @@ msgid "Synchronize"
msgstr "Sinhroniziraj"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Dvojiški dnevnik"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Spremenljivke"
@@ -7665,11 +7611,11 @@ msgstr "Počisti"
msgid "Columns"
msgstr "Stolpci"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Označi to poizvedbo SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
@@ -8078,7 +8024,7 @@ msgstr "Različica protokola"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Uporabnik"
@@ -8233,10 +8179,8 @@ msgid "No databases"
msgstr "Brez zbirk podatkov"
#: navigation.php:270
-#, fuzzy
-#| msgid "filter tables by name"
msgid "Filter tables by name"
-msgstr "filtriraj tabele po imenu"
+msgstr "Filtriraj tabele po imenu"
#: navigation.php:303 navigation.php:304
msgctxt "short form"
@@ -8525,17 +8469,17 @@ msgstr "Datoteka ne obstaja"
msgid "Select binary log to view"
msgstr "Izberite dvojiški dnevnik za pregled"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Skrči prikazane poizvedbe"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Pokaži celotne poizvedbe"
@@ -8927,8 +8871,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "
@@ -9060,7 +9004,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Pokaži stanje glavnega strežnika"
@@ -9210,130 +9154,122 @@ msgstr ""
"Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga "
"želite konfigurirati?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Nit %s je bila prekinjena."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Upravljavec"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Predpomnilnik poizvedb"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Niti"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Začasni podatki"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Zakasnjena vstavljanja"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Predpomnilnik ključev"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Stiki"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Razvrščanje"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordinator transakcij"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Izplakni (zapri) vse tabele"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Pokaži odprte tabele"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Prikaži gostitelje podrejencev"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Prikaži stanje podrejencev"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Izplakni predpomnilnik poizvedb"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Podatki o izvajanju"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Vse spremenljivke stanja"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Nadziranje"
-#: server_status.php:648
-#, fuzzy
-#| msgid "Apply a divisor"
+#: server_status.php:690
msgid "Advisor"
-msgstr "Uporabi delitelja"
+msgstr "Svetovalec"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Hitrost osveževanja: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Vsebuje besedo:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Prikaži samo opozorilne vrednosti"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtriraj po kategoriji ..."
-#: server_status.php:723
-#, fuzzy
-#| msgid "Show only alert values"
+#: server_status.php:765
msgid "Show unformatted values"
-msgstr "Prikaži samo opozorilne vrednosti"
+msgstr "Prikaži neoblikovane vrednosti"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Sorodne povezave:"
-#: server_status.php:758
-#, fuzzy
-#| msgid "Query type"
+#: server_status.php:800
msgid "Run analyzer"
-msgstr "Vrsta poizvedbe"
+msgstr "Zaženi analitik"
-#: server_status.php:759
-#, fuzzy
-#| msgid "Introduction"
+#: server_status.php:801
msgid "Instructions"
-msgstr "Uvod"
+msgstr "Navodila"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9348,44 +9284,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Vprašanja od zagona: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "na uro"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "na minuto"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "na sekundo"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Izjave"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "Št."
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Promet omrežja od zagona: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9393,18 +9329,18 @@ msgstr ""
"Strežnik MySQL deluje kot glavni strežnik in podrejenec v "
"postopku podvojevanja."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja"
"b>."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9412,11 +9348,11 @@ msgstr ""
"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite "
"razdelek o podvojevanju."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Stanje podvojevanja"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9424,35 +9360,35 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Prejeto"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Največ sočasnih povezav"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Neuspeli poizkusi"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Prekinjeno"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Ukaz"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9460,11 +9396,11 @@ msgstr ""
"Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil "
"povezave."
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Število spodletelih poskusov povezave s strežnikom MySQL."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9474,18 +9410,18 @@ msgstr ""
"dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za "
"shranitev izjav iz transakcije uporabljene začasne datoteke."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9497,11 +9433,11 @@ msgstr ""
"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile "
"na pomnilniku namesto na disku."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Koliko začasnih datotek je ustvaril mysqld."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9509,7 +9445,7 @@ msgstr ""
"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril "
"med izvajanjem stavkov."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9517,7 +9453,7 @@ msgstr ""
"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke "
"napake (najverjetneje podvojen ključ)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9525,23 +9461,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Število zapisanih vrstic INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Število izvedenih izjav FLUSH."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Število notranjih izjav COMMIT."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Število izbrisov vrstice iz tabele."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9551,7 +9487,7 @@ msgstr ""
"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat "
"so bile tabele odkrite."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9561,7 +9497,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9570,7 +9506,7 @@ msgstr ""
"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno "
"indeksirane."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9580,7 +9516,7 @@ msgstr ""
"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če "
"pregledujete indeks."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9588,7 +9524,7 @@ msgstr ""
"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek "
"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9600,7 +9536,7 @@ msgstr ""
"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih "
"tabel, ali stike, ki ne uporabljajo ključev pravilno."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9612,36 +9548,36 @@ msgstr ""
"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo "
"prednosti indeksov, ki jih imate."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Število notranjih izjav ROLLBACK."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Število zahtev za posodobitev vrstice v tabeli."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Število zahtev za vstavitev vrstice v tabelo."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Število trenutno umazanih strani."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Število prostih strani."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9651,7 +9587,7 @@ msgstr ""
"trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga "
"ne morejo biti izplaknjene ali odstranjene."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9663,11 +9599,11 @@ msgstr ""
"lahko izračuna tudi kot Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Skupna velikost zaloge medpomnilnika, v straneh."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9675,7 +9611,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9683,11 +9619,11 @@ msgstr ""
"Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB "
"izvaja zaporedno pregledovanje celotne tabele."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9695,7 +9631,7 @@ msgstr ""
"Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge "
"medpomnilnika in je moral izvesti enostransko branje."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9709,52 +9645,52 @@ msgstr ""
"teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, "
"bi morala biti ta vrednost majhna."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Število dozdajšnjih posegov fsync()."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Trenutno število čakajočih posegov fsync()."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Trenutno število čakajočih branj."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Trenutno število čakajočih pisanj."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Količina do zdaj prebranih podatkov, v bajtih."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Skupno število branj podatkov."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Skupno število zapisovanj podatkov."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Količina do zdaj zapisanih podatkov, v bajtih."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9762,35 +9698,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Število zahtev pisanja v dnevnik."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Število fizičnih pisanj v dnevniško datoteko."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Število pisanj fsync() storjenih v dnevniško datoteko."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Število čakajoče dnevniške datoteke fsyncs."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Čakajoča pisanja v dnevniško datoteko."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Število bajtov zapisanih v dnevniško datoteko."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Število ustvarjenih strani."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9798,51 +9734,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Število prebranih strani."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Število zapisanih strani."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Število zaklepov vrstic, na katere se trenutno čaka."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Število čakanj na zaklepe vrstic."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Število vrstic izbrisanih iz tabel InnoDB."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Število vrstic vstavljenih v tabele InnoDB."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Število vrstic prebranih iz tabel InnoDB."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Število vrstic posodobljenih v tabelah InnoDB."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9851,7 +9787,7 @@ msgstr ""
"vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot "
"Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -9859,7 +9795,7 @@ msgstr ""
"Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko "
"uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9869,11 +9805,11 @@ msgstr ""
"dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli "
"naenkrat v uporabi."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9883,15 +9819,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9902,17 +9838,17 @@ msgstr ""
"enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena "
"poizvedba."
-#: server_status.php:1211
+#: server_status.php:1253
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:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9920,19 +9856,19 @@ msgstr ""
"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel "
"najverjetneje premajhen."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Število odprtih datotek."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Število odprtih tabel."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9942,19 +9878,19 @@ msgstr ""
"število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z "
"izvedbo stavka FLUSH QUERY CACHE."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Količina prostega spomina za predpomnilnik poizvedb."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Število zadetkov predpomnilnika."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Število poizvedb dodanih v predpomnilnik."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9967,7 +9903,7 @@ msgstr ""
"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere "
"poizvedbe naj odstrani iz predpomnilnika."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9975,19 +9911,19 @@ msgstr ""
"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene "
"zaradi nastavitve query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Število zabeleženih poizvedb v predpomnilniku."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Skupno število blokov v predpomnilniku poizvedb."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9995,11 +9931,11 @@ msgstr ""
"Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno "
"preverite indekse vaših tabel."
-#: server_status.php:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10007,7 +9943,7 @@ 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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10015,16 +9951,16 @@ msgstr ""
"Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni "
"kritično, četudi je veliko.)"
-#: server_status.php:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10032,11 +9968,11 @@ msgstr ""
"Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti "
"SQL podrejenca."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10044,12 +9980,12 @@ msgstr ""
"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time "
"sekund."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10059,23 +9995,23 @@ msgstr ""
"Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke "
"sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Število razvrščanj, ki so bila storjena z razponi."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Število razvrščenih vrstic."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Koliko krat je bil zaklep tabele pridobljen takoj."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10087,7 +10023,7 @@ msgstr ""
"optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele "
"ali uporabite podvojevanje."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10097,11 +10033,11 @@ msgstr ""
"izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte "
"vaš thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Število trenutno odprtih povezav."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10112,63 +10048,61 @@ msgstr ""
"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:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Število niti, ki ne spijo."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Začni nadziranje"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Navodila/Namestitev"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Preurejanje/urejanje grafikonov je končano"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Dodaj grafikon"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Preuredi/uredi grafikone"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Hitrost osveževanja"
-#: server_status.php:1415
-#, fuzzy
-#| msgid "Chart columns:"
+#: server_status.php:1457
msgid "Chart columns"
-msgstr "Stolpci grafikona:"
+msgstr "Stolpci grafikona"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Upravljanje napak:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Povrni privzeto vrednost"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Navodila nadziranja"
-#: server_status.php:1437
+#: server_status.php:1479
#, fuzzy
#| msgid ""
#| "The phpMyAdmin Monitor can assist you in optimizing the server "
@@ -10192,7 +10126,7 @@ msgstr ""
" general_log ustvari ogromno podatkov in poveča obremenitev strežnika "
"do 15 %."
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10200,7 +10134,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: \n"
@@ -10237,7 +10171,7 @@ msgstr ""
"statistike iz dnevnikov, kar vam bo pomagalo odkriti vzrok\n"
" povečane dejavnosti.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10338,13 +10266,13 @@ msgstr ""
"
Izberite dnevnike, iz katerih želite ustvariti statistiko.
Rezultati "
"so zbrani po besedilu poizvedbe."
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta poizvedbe"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -10353,7 +10281,7 @@ msgstr[1] "%d sekundi"
msgstr[2] "%d sekunde"
msgstr[3] "%d sekund"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10815,34 +10743,34 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake."
msgid "Browse foreign values"
msgstr "Prebrskaj tuje vrednosti"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id vstavljene vrstice: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Prikazovanje kot koda PHP"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Prikazovanje poizvedbe SQL"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Preverjen SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Težave z indeksi tabele `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Oznaka"
@@ -11583,9 +11511,9 @@ msgid "Current amount of Questions: %s"
msgstr "Trenutna povezava"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Pokaži poizvedbe SQL"
#: po/advisory_rules.php:16
@@ -11607,7 +11535,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Izplakni predpomnilnik poizvedb"
#: po/advisory_rules.php:21
@@ -11795,12 +11723,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Poraba prostora"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11857,8 +11779,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11967,9 +11889,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Omogoča ustvarjanje začasnih tabel."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11987,13 +11909,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Omogoča ustvarjanje začasnih tabel."
#: po/advisory_rules.php:113
#, php-format
@@ -12025,8 +11949,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Ni rutin za prikaz."
#: po/advisory_rules.php:121
#, fuzzy
@@ -12046,7 +11972,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12069,7 +11995,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12078,7 +12004,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12091,8 +12017,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Kje naj prikažem povezave vrstic tabel"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12102,8 +12030,8 @@ msgstr "Kje naj prikažem povezave vrstic tabel"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12135,10 +12063,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabela"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Kje naj prikažem povezave vrstic tabel"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12165,8 +12092,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabela"
#: po/advisory_rules.php:152
msgid ""
@@ -12207,8 +12137,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Velikost medpomnilnika razvrščanja"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12228,8 +12160,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Velikost medpomnilnika razvrščanja"
#: po/advisory_rules.php:168
#, php-format
@@ -12237,7 +12171,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12257,7 +12191,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Ustvari tabelo"
#: po/advisory_rules.php:176
@@ -12278,10 +12212,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Pokaži odprte tabele"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Oblika uvožene datoteke"
#: po/advisory_rules.php:181
msgid ""
@@ -12304,7 +12238,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Oblika uvožene datoteke"
#: po/advisory_rules.php:186
@@ -12351,7 +12285,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Predpomnilnik ključev"
#: po/advisory_rules.php:201
@@ -12369,8 +12303,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Sledenje ni aktivno."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12429,10 +12365,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time je nastavljen na %d sekund(o)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Povezave"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Vztrajne povezave"
#: po/advisory_rules.php:221
msgid ""
@@ -12455,9 +12391,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Stisni povezavo"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Vztrajne povezave"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12479,7 +12415,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Vztrajne povezave"
#: po/advisory_rules.php:231
@@ -12493,8 +12429,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Oblika uvožene datoteke"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12515,7 +12453,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Oblika uvožene datoteke"
#: po/advisory_rules.php:243
@@ -12542,8 +12480,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Velikost zaloge medpomnilnika"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12655,6 +12595,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Poraba prostora"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Pokaži odprte tabele"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Povezave"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Stisni povezavo"
+
+#~ msgid "CPU Usage"
+#~ msgstr "Uporaba CPU"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Uporaba pomnilnika"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Uporaba izmenjevanja"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excelov delovni zvezek 97-2003 XLS"
diff --git a/po/sq.po b/po/sq.po
index c04bc4d67c..bfbc5a29a2 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \n"
+"Language: sq\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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Shfaqi të gjithë"
@@ -47,7 +47,7 @@ msgstr "Kërko"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Emri i kyçit"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Përshkrimi"
@@ -201,7 +201,7 @@ msgstr "Lidhje me"
msgid "Comments"
msgstr "Komente"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Komente"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Jo "
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Jo "
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -364,7 +364,7 @@ msgstr "Skema relacionale"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -637,8 +637,8 @@ msgstr "Gjurmimi nuk është aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -648,7 +648,7 @@ msgstr "Paraqitje"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikimi"
@@ -691,7 +691,7 @@ msgstr "Zgjidh të mbingarkuarit"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporto"
@@ -758,10 +758,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -782,7 +782,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Gjendja"
@@ -885,8 +885,8 @@ msgstr "Dump u ruajt tek file %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -922,7 +922,7 @@ msgstr "Libërshënuesi u fshi."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -969,15 +969,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Konfermo: "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
@@ -1066,12 +1066,12 @@ msgstr "Duke ringarkuar të drejtat"
msgid "Removing Selected Users"
msgstr "Heq përdoruesit e zgjedhur"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1079,17 +1079,17 @@ msgstr ""
msgid "Edit"
msgstr "Ndrysho"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Zgjedhja e serverit"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "query SQL"
@@ -1101,13 +1101,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Gjithsej"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1139,7 +1139,7 @@ msgstr "Zgjedhja e serverit"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Proceset"
@@ -1159,166 +1159,193 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Statistikat e rreshtave"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "Lloji i query"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "Lloji i query"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "Lloji i query"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Gjithsej"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Gjithsej"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Marrë"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Lidhje"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Operacione"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafiku"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Karakteristikat e përgjithshme të relacionit"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Ndysho emrin e databazës në"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Asnjë lloj"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1326,385 +1353,385 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, fuzzy, php-format
#| msgid "Save as file"
msgid "Set log_output to %s"
msgstr "Ruaje me emër..."
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Aktiv"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Çaktivizo"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Karakteristikat e përgjithshme të relacionit"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Karakteristikat e përgjithshme të relacionit"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Importo files"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Asnjë databazë"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "regjistrime për faqe"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Gjithsej"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokal"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "Ndysho emrin e databazës në"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "Eksporto"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Përditëso kërkesën"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentet"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentet"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokal"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Proceset"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Ndysho emrin e databazës në"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Ndysho emrin e databazës në"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopjo databazën në"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Familje gërmash"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Zgjidh të paktën një kollonë për të shfaqur"
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Krijo një faqe të re"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Përdor tabelat"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Tregues"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Shfaq rrjetën"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Kërko"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "query SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "query SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Shfleto"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Në fshirje e sipër të %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "query SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "query SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nuk ka rreshta të zgjedhur"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Ndrysho"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1712,110 +1739,110 @@ msgstr ""
msgid "Save"
msgstr "Ruaj"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "query SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "query SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Shpërfill"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "Shto një fushë të re"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Zgjidh fushën që dëshiron të shohësh"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Gjeneruar nga"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Hën"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1823,30 +1850,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Asnjë databazë"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Asnjë lloj"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Paraardhësi"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1854,96 +1881,96 @@ msgid "Next"
msgstr "Në vazhdim"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gjithsej"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Pri"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Maj"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Qer"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Kor"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Gsh"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Tet"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1951,78 +1978,78 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dhj"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Djl"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Hën"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pre"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2030,100 +2057,100 @@ msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sht"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Djl"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Hën"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mër"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Enj"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pre"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sht"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "në përdorim"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2377,8 +2404,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2518,7 +2545,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabela"
@@ -2598,7 +2625,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Serveri"
@@ -2647,7 +2674,7 @@ msgid "Documentation"
msgstr "Dokumentet"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "query SQL"
@@ -2685,7 +2712,7 @@ msgid "Create PHP Code"
msgstr "Krijo kodin PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Rifresko"
@@ -2706,7 +2733,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2811,7 +2838,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5384,8 +5411,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5596,7 +5623,7 @@ msgstr "Rendit sipas kyçit"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5668,7 +5695,7 @@ msgid "The row has been deleted"
msgstr "rreshti u fshi"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Hiq"
@@ -5684,7 +5711,7 @@ msgstr "Shfaqja e regjistrimeve "
msgid "total"
msgstr "Gjithsej"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query ka zgjatur %01.4f sec"
@@ -5758,7 +5785,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Gjëndja InnoDB"
@@ -6103,8 +6130,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6220,28 +6247,28 @@ msgid "Display MIME types"
msgstr "Lloje MIME në dispozicion"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Gjeneruar më"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Versioni i MySQL"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Versioni i PHP"
@@ -6444,49 +6471,49 @@ msgid "Generated by"
msgstr "Gjeneruar nga"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Asnjë databazë"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Vetëm struktura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6936,14 +6963,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "E ndryshueshme"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Vlerë"
@@ -7160,7 +7187,7 @@ msgid "Returns"
msgstr "Opcione për tabelën"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Koha"
@@ -7635,13 +7662,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "Binar"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Të ndryshueshmet"
@@ -7699,11 +7726,11 @@ msgstr "Kalendari"
msgid "Columns"
msgstr "Emrat e kollonave"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Shtoja të preferuarve këtë query SQL"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
@@ -8152,7 +8179,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Përdorues"
@@ -8610,18 +8637,18 @@ msgstr "Tabela \"%s\" nuk ekziston!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Fusha"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Shkurton (ndërpret) Queries e Shfaqura"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Shfaq të gjitha kërkesat"
@@ -9026,8 +9053,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e "
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
@@ -9157,7 +9184,7 @@ msgstr "Të drejtat u përditësuan me sukses."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9296,12 +9323,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s u përfundua me sukses."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9309,125 +9336,125 @@ msgstr ""
"phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë "
"përfunduar më parë."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "Lloji i query"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "Përdor shtimet me vonesë"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "Shfaq tabelat"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informacione mbi Runtime"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Rifresko"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Mos ndrysho fjalëkalim"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "Shfaq tabelat"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "Shfaq tabelat"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacione"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Lloji i query"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funksioni"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9442,131 +9469,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "në orë"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "në minutë"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "në sekondë"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Instruksione"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Marrë"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Dërguar"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Përpjekje të dështuara"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Dështoi"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komanda"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9574,78 +9601,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9653,7 +9680,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9661,42 +9688,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9704,33 +9731,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9739,227 +9766,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9967,99 +9994,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10067,18 +10094,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10086,63 +10113,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sht"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
msgid "Add chart"
msgstr "Shto një fushë të re"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Rifresko"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Shto/Fshi kollonat e fushës"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10151,7 +10178,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10159,7 +10186,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10171,7 +10198,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10180,98 +10207,88 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Përdorimi"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "Ndysho emrin e databazës në"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Përdorimi"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Zgjidh Tabelat"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
msgid "Add this series"
msgstr "Shto një përdorues të ri"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
msgid "Series in Chart:"
msgstr "query SQL"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
msgid "Log statistics"
msgstr "Statistikat e rreshtave"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Zgjidh Tabelat"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Lloji i query"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10279,7 +10296,7 @@ msgid_plural "%d seconds"
msgstr[0] "në sekondë"
msgstr[1] "në sekondë"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10694,36 +10711,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Shfleto opcionet e huaja"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Vleftëso SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiketë"
@@ -11515,8 +11532,8 @@ msgid "Current amount of Questions: %s"
msgstr "Lidhje"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Shfaq të gjitha kërkesat"
#: po/advisory_rules.php:16
@@ -11537,7 +11554,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "query SQL"
#: po/advisory_rules.php:21
@@ -11717,12 +11734,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Hapësira e përdorur"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11778,8 +11789,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11883,9 +11894,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Lejon krijimin e tabelave të përkohëshme."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11903,13 +11914,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Lejon krijimin e tabelave të përkohëshme."
#: po/advisory_rules.php:113
#, php-format
@@ -11941,7 +11954,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11960,7 +11973,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11983,7 +11996,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11992,7 +12005,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12005,7 +12018,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12014,8 +12027,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12046,10 +12059,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tabela(at)"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12076,8 +12087,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tabela(at)"
#: po/advisory_rules.php:152
msgid ""
@@ -12116,7 +12129,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12137,7 +12150,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12146,7 +12159,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12165,7 +12178,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Krijo një faqe të re"
#: po/advisory_rules.php:176
@@ -12184,9 +12197,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "Shfaq tabelat"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "Familja gërmave të file:"
#: po/advisory_rules.php:181
msgid ""
@@ -12208,7 +12221,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Familja gërmave të file:"
#: po/advisory_rules.php:186
@@ -12250,7 +12263,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Lloji i query"
#: po/advisory_rules.php:201
@@ -12268,8 +12281,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Gjurmimi nuk është aktiv."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12325,9 +12340,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Lidhje"
#: po/advisory_rules.php:221
@@ -12352,7 +12367,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Lidhje"
#: po/advisory_rules.php:226
@@ -12375,7 +12390,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Lidhje"
#: po/advisory_rules.php:231
@@ -12389,8 +12404,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Tabela e përmbajtjes"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12411,7 +12428,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Tabela e përmbajtjes"
#: po/advisory_rules.php:243
@@ -12436,7 +12453,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12543,6 +12560,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Hapësira e përdorur"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Shfaq tabelat"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Lidhje"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Lidhje"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Përdorimi"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Përdorimi"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -12647,8 +12688,8 @@ msgstr ""
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %"
-#~ "s queries."
+#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar "
+#~ "%s queries."
#, fuzzy
#~ msgid "Chart generated successfully."
diff --git a/po/sr.po b/po/sr.po
index 4f2eb87f05..5dded49233 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: serbian_cyrillic \n"
+"Language: sr\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"
+"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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Прикажи све"
@@ -48,7 +48,7 @@ msgstr "Претраживање"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Име кључа"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Опис"
@@ -200,7 +200,7 @@ msgstr "Везе ка"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -211,12 +211,12 @@ msgstr "Коментари"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Не"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -232,7 +232,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -358,7 +358,7 @@ msgstr "Уреди или извези релациону схему"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -634,8 +634,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -645,7 +645,7 @@ msgstr "Поглед"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Репликација"
@@ -687,7 +687,7 @@ msgstr "Провери табеле које имају прекорачења"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Извоз"
@@ -755,10 +755,10 @@ msgstr "Провери табелу"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -780,7 +780,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Статус"
@@ -884,11 +884,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
-"sдокументацију%s за начине превазилажења овог ограничења."
+"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
+"%sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -928,7 +928,7 @@ msgstr "Обележивач је управо обрисан."
msgid "Showing bookmark"
msgstr "Приказивање маркера"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Направљен маркер %s"
@@ -980,15 +980,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" команда је онемогућена."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Да ли стварно хоћете да "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
@@ -1077,12 +1077,12 @@ msgstr "Поново учитај привилегије"
msgid "Removing Selected Users"
msgstr "Уклони изабране кориснике"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1090,17 +1090,17 @@ msgstr ""
msgid "Edit"
msgstr "Промени"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Избор сервера"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL упит"
@@ -1112,13 +1112,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Укупно"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1150,7 +1150,7 @@ msgstr "Избор сервера"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Процеси"
@@ -1170,172 +1170,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Статистике реда"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Кеш упита"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Кеш упита"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Кеш упита"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "КБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Укупно"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Скуп прихватника"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Укупно"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Слободне стране"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Примљено"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Конекције"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Персијски"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Саобраћај"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Опште особине релација"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Уклони базу"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Држи се мреже"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "нема"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1343,386 +1375,386 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Омогућено"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Онемогућено"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Опште особине релација"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Опште особине релација"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Наслов извештаја"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "База не постоји"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Датотеке"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Датотеке"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Број сортираних редова."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Укупно"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Локални"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Поново учитај"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Увоз"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ажурирај упит"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Документација"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Документација"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Откажи"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Локални"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Процеси"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "У реду"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Преименуј базу у"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Преименуј базу у"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Копирај базу у"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Карактер сет"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Табела мора имати барем једно поље."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Направи табелу"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Користи табеле"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "Додај ново поље"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Прикажи мрежу"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Претраживање"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL упит"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL упит"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Преглед"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Бришем %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL упит"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL упит"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Нема одабраних редова"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Промени"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1730,110 +1762,110 @@ msgstr ""
msgid "Save"
msgstr "Сачувај"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL упит"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Игнориши"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Додај %s поља"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Изаберите референцирани кључ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Изабери страни кључ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Молимо изаберите примарни или јединствени кључ"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Изабери поља за приказ"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Направи лозинку"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Направи"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промени лозинку"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1841,30 +1873,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Направи релацију"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "База не постоји"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Подаци"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Претходна"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1872,96 +1904,96 @@ msgid "Next"
msgstr "Следећи"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Укупно"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарни"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "мај"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1969,78 +2001,78 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "дец"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Уто"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2048,100 +2080,100 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Уто"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2406,8 +2438,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@@ -2549,7 +2581,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Табеле"
@@ -2633,7 +2665,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сервер"
@@ -2682,7 +2714,7 @@ msgid "Documentation"
msgstr "Документација"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL упит"
@@ -2720,7 +2752,7 @@ msgid "Create PHP Code"
msgstr "Направи PHP код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Освежи"
@@ -2743,7 +2775,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Складиштења"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Профилисање"
@@ -2850,7 +2882,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5463,8 +5495,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@@ -5693,7 +5725,7 @@ msgstr "Сортирај по кључу"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5764,7 +5796,7 @@ msgid "The row has been deleted"
msgstr "Ред је обрисан"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Обустави"
@@ -5780,7 +5812,7 @@ msgstr "Приказ записа"
msgid "total"
msgstr "укупно"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Упит је трајао %01.4f секунди"
@@ -5857,7 +5889,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Скуп прихватника"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -6217,8 +6249,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6338,28 +6370,28 @@ msgid "Display MIME types"
msgstr "Доступни MIME-типови"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Домаћин"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Време креирања"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Верзија сервера"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "верзија PHP-a"
@@ -6560,50 +6592,50 @@ msgid "Generated by"
msgstr "Генерисао"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL је вратио празан резултат (нула редова)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "База не постоји"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "База не постоји"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Само структура"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7059,14 +7091,14 @@ msgid "Slave status"
msgstr "Прикажи статус подређених сервера"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Променљива"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Вредност"
@@ -7281,7 +7313,7 @@ msgid "Returns"
msgstr "Повратни тип"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Време"
@@ -7772,12 +7804,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Бинарни дневник"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Променљиве"
@@ -7835,11 +7867,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имена колона"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Запамти SQL-упит"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
@@ -8303,7 +8335,7 @@ msgstr "Верзија протокола"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Корисник"
@@ -8775,17 +8807,17 @@ msgstr "Табела \"%s\" не постоји!"
msgid "Select binary log to view"
msgstr "Изаберите бинарни дневник за преглед"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Датотеке"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Прикажи скраћене упите"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Прикажи комплетне упите"
@@ -9178,8 +9210,8 @@ msgstr "Одбаци базе које се зову исто као корис
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
@@ -9309,7 +9341,7 @@ msgstr "Привилегије су успешно поново учитане."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Прикажи статус подређених сервера"
@@ -9450,136 +9482,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процес %s је успешно прекинут."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Руковалац"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Кеш упита"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Нити"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Привремени подаци"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Одложена уметања"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Кеш кључева"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Спојеви"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Сортирање"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Координатор трансакција"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Очисти (затвори) све табеле"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Прикажи отворене табеле"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Прикажи подређене сервер"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Прикажи статус подређених сервера"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Очисти кеш упита"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Информације о току рада"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Освежи"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Немој да мењаш лозинку"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Прикажи отворене табеле"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Прикажи отворене табеле"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релације"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Врста упита"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функције"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9594,70 +9626,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "на сат"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "у минуту"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "у секунди"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Име"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Репликација"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9665,47 +9697,47 @@ msgstr ""
"На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да "
"те статистике, онако како их пријављује MySQL сервер, могу бити нетачне."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Примљено"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Послато"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "макс. истовремених веза"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Неуспелих покушаја"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Прекинуто"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Наредба"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9715,16 +9747,16 @@ msgstr ""
"превазишле вредност у binlog_cache_size и користиле привремену датотеку да "
"сместе изразе из трансакције."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Број трансакција које су користиле кеш привременог бинарног дневника."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9736,11 +9768,11 @@ msgstr ""
"повећате вредност tmp_table_size како би учинили да привремене табеле буду "
"базиране у меморији уместо на диску."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Колико привремених датотека је mysqld направио."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9748,7 +9780,7 @@ msgstr ""
"Број привремених табела које је сервер аутоматски креирао у меморији док је "
"извршавао изразе."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9756,7 +9788,7 @@ msgstr ""
"Број редова уписаних са INSERT DELAYED за које је јављена нека грешка "
"(вероватно дуплирани кључ)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9764,23 +9796,23 @@ msgstr ""
"Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над "
"којом се користи INSERT DELAYED добија своју нит."
-#: server_status.php:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Број уписаних INSERT DELAYED редова."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Број извршених FLUSH израза."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Број интерних COMMIT израза."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Број брисања неког реда табеле."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9790,7 +9822,7 @@ msgstr ""
"одређеног имена. То се назива откривањем (discovery). Handler_discover "
"означава број пута када је откривена табела."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9800,7 +9832,7 @@ msgstr ""
"може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT "
"кол1 FROM нешто, под претпоставком да је кол1 индексирано."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -9808,7 +9840,7 @@ msgstr ""
"Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то "
"је добар показатељ да су ваши упити и табеле прописно индексирани."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9818,7 +9850,7 @@ msgstr ""
"када радите упит по колони индекса са ограничењем опсега или ако радите "
"скенирање индекса."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9826,7 +9858,7 @@ msgstr ""
"Број захтева за читањем претходног реда у поретку кључева. Ова метода читања "
"се углавном користи за оптимизацију ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9838,7 +9870,7 @@ msgstr ""
"много упита који захтевају да MySQL скенира целе табеле или имате спојеве "
"који не користе кључеве прописно."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9850,35 +9882,35 @@ msgstr ""
"прописно индексиране или да ваши упити нису написани да искористе већ "
"постојеће индексе."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Број интерних ROLLBACK израза."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Број захтева за ажурирање реда у табели."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Број захтева за уписивање реда у табелу."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Број страна које садрже податке (чистих или прљавих)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Број страна које су тренутно прљаве."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Број страна у остави бафера за које је тражено да буду очишћене."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Број слободних страна."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9888,7 +9920,7 @@ msgstr ""
"чита или се у њих уписује или из неког другог разлога не могу бити очишћене "
"нити уклоњене."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9900,11 +9932,11 @@ msgstr ""
"такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Пуна величина оставе бафера, у странама."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9912,7 +9944,7 @@ msgstr ""
"Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када "
"упит треба да скенира велики део табеле али насумичним редоследом."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9920,11 +9952,11 @@ msgstr ""
"Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када "
"InnoDB ради секвенцијално скенирање целе табеле."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Број логичких захтева за читање које је InnoDB урадио."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9932,7 +9964,7 @@ msgstr ""
"Број логичких читања која InnoDB није могао да задовољи из оставе бафера те "
"је морао да ради читање појединачне стране."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9946,55 +9978,55 @@ msgstr ""
"дешавања ових чекања. Ако је величина оставе бафера постављена како треба, "
"ова вредност ви требало да је ниска."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Број уписа учињених у InnoDB оставу бафера."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Број fsync() операција до сада."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Тренутни број fsync() операција на чекању."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Тренутни број читања на чекању."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Тренутни број уписа на чекању."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Количина података прочитаних до сада, у бајтовима."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Укупан број читања података."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Укупан број уписа података."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Количина података уписаних до сада, у бајтовима"
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
"у ову сврху."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
"у ову сврху."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -10002,35 +10034,35 @@ msgstr ""
"Број чекања која смо имали зато што је бафер дневника био премали те смо "
"морали да сачекамо да буде очишћен пре наставка."
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Број захтева за упис у дневник."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Број физичких уписа у датотеку дневника."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Број fsyncs уписа начињених у датотеку дневника."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Број fsync-ова за датотеку дневника на чекању."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Број уписа у датотеку дневника на чекању."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Број бајтова уписаних у датотеку дневника."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Број направљених страна."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10039,51 +10071,51 @@ msgstr ""
"вредности се рачунају у странама; величина стране омогућава да се оне лако "
"конвертују у бајтове."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Број прочитаних страна."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Број записаних страна."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Број брава за редове које се тренутно чекају."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Просечно време за добављање браве за ред, у милисекундама."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Најдуже време за добављање браве за ред, у милисекундама."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Број пута када се морала чекати брава за ред."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Број редова обрисаних из InnoDB табела."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Број редова уметнутих у InnoDB табеле."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Број редова прочитаних из InnoDB табела."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Број редова ажурираних у InnoDB табелама."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10091,7 +10123,7 @@ msgstr ""
"Број блокова кључева у кешу кључева који су измењени али још нису послати на "
"диск. Ово је раније било познато као Not_flushed_key_blocks."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10099,7 +10131,7 @@ msgstr ""
"Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите "
"да утврдите колики део кеша кључева је у употреби."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -10109,11 +10141,11 @@ msgstr ""
"водостаја“ која показује највећи икада број блокова који је био у употреби у "
"исто време."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "Број захтева за читање блока кључева из кеша."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -10123,15 +10155,15 @@ msgstr ""
"је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша "
"се може израчунати као Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Број захтева за уписивање блока кључева у кеш."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Број физичких уписа блока кључева на диск."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10141,17 +10173,17 @@ msgstr ""
"упита. Корисно за упоређивање цене различитих планова упита за исти упит. "
"Подразумевана вредност 0 значи да још није био компајлиран ниједан упит."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10159,39 +10191,39 @@ msgstr ""
"Број табела које су биле отваране. Ако је број велики, ваш кеш табела је "
"вероватно премали."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Број отворених датотека."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Број отворених токова (користи се првенствено за вођење дневника (logging))."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Број отворених табела."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Количина слободне меморије за кеш упита."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Број погодака из кеша."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Број упита додатих у кеш."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10203,7 +10235,7 @@ msgstr ""
"упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least "
"recently used , LRU) да би одлучио које упите да уклони из кеша."
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10211,19 +10243,19 @@ msgstr ""
"Број некешираних упита (који се не могу кеширати или нису кеширани због "
"подешавања query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Број упита регистрованих у кешу."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Укупан број блокова у кешу за упите."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Статус репликације отпорне на грешке (није још имплементирано)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10231,11 +10263,11 @@ msgstr ""
"Број спојева који не користе индексте. Ако ова вредност није 0, требало би "
"пажљиво да проверите индексе ваших табела."
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr "Број спојева који су користили претрагу опсега на референтној табели."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10243,7 +10275,7 @@ msgstr ""
"Број спојева без кључева који проверавају употребу кључа после сваког реда. "
"(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10251,15 +10283,15 @@ msgstr ""
"Број спојева који су користили опсеге на првој табели. (Обично није критично "
"чак ни када је ово велико)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "Број спојева који су урадили пуно скенирање прве табеле."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10267,11 +10299,11 @@ msgstr ""
"Укупан број пута (од покретања) када је помоћна SQL нит за репликацију "
"покушала трансакције."
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10279,12 +10311,12 @@ msgstr ""
"Број нити за које је требало више од slow_launch_time секудни да би биле "
"покренуте."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Број упита за које је требало више од long_query_time секудни."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10294,23 +10326,23 @@ msgstr ""
"је ова вредност велика, требало би да размислите о повећању вредности "
"системске променљиве sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Број сортирања која су урађена са опсегом."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Број сортираних редова."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "Број сортирања до којих је дошло скенирањем табеле."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Број пута када је брава за табелу одмах добављена."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10322,7 +10354,7 @@ msgstr ""
"би требало да оптимизујете своје упите а потом да или поделите табелу или "
"табеле или да користите репликацију."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10332,11 +10364,11 @@ msgstr ""
"Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате "
"ваш thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Број тренутно отворених веза."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10348,63 +10380,63 @@ msgstr ""
"имплементацију нити, ово обично не доноси приметна побољшања у "
"перформансама.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Број нити које нису успаване."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
msgid "Start Monitor"
msgstr "Статус"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Додај ново поље"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Освежи"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Додај/обриши колону"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10413,7 +10445,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10421,7 +10453,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10433,7 +10465,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Врста упита"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10544,7 +10566,7 @@ msgstr[0] "у секунди"
msgstr[1] "у секунди"
msgstr[2] "у секунди"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10963,36 +10985,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Прегледај стране вредности"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Приказ као PHP код"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Приказ као SQL упит"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирању табеле `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Назив"
@@ -11791,8 +11813,8 @@ msgid "Current amount of Questions: %s"
msgstr "макс. истовремених веза"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Прикажи комплетне упите"
#: po/advisory_rules.php:16
@@ -11814,7 +11836,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Очисти кеш упита"
#: po/advisory_rules.php:21
@@ -11995,12 +12017,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Заузеће"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12057,8 +12073,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12167,9 +12183,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Дозвољава креирање привремених табела.."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12187,13 +12203,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Дозвољава креирање привремених табела.."
#: po/advisory_rules.php:113
#, php-format
@@ -12224,8 +12242,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Провери табелу"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12244,7 +12263,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12267,7 +12286,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12276,7 +12295,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12289,7 +12308,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12298,8 +12317,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12330,10 +12349,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s табела"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12360,8 +12377,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s табела"
#: po/advisory_rules.php:152
msgid ""
@@ -12402,8 +12421,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Величина прихватника за сортирање"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12423,8 +12444,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Величина прихватника за сортирање"
#: po/advisory_rules.php:168
#, php-format
@@ -12432,7 +12455,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12452,7 +12475,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Направи табелу"
#: po/advisory_rules.php:176
@@ -12473,10 +12496,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Прикажи отворене табеле"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Формат датотека за увоз"
#: po/advisory_rules.php:181
msgid ""
@@ -12499,7 +12522,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Формат датотека за увоз"
#: po/advisory_rules.php:186
@@ -12546,7 +12569,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Кеш кључева"
#: po/advisory_rules.php:201
@@ -12564,8 +12587,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Кеш кључева"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12621,10 +12646,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Конекције"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "макс. истовремених веза"
#: po/advisory_rules.php:221
msgid ""
@@ -12648,7 +12673,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "макс. истовремених веза"
#: po/advisory_rules.php:226
@@ -12671,7 +12696,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "макс. истовремених веза"
#: po/advisory_rules.php:231
@@ -12685,8 +12710,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Формат датотека за увоз"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12707,7 +12734,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Формат датотека за увоз"
#: po/advisory_rules.php:243
@@ -12734,8 +12761,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Величина прихватника"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12847,6 +12876,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Заузеће"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Прикажи отворене табеле"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Конекције"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "макс. истовремених веза"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Заузеће"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Заузеће"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index cb220c877d..318d62e022 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic \n"
"Language-Team: serbian_latin \n"
+"Language: sr@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"
+"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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Prikaži sve"
@@ -48,7 +48,7 @@ msgstr "Pretraživanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Opis"
@@ -202,7 +202,7 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Komentari"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ne"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -360,7 +360,7 @@ msgstr "Uredi ili izvezi relacionu shemu"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -628,8 +628,8 @@ msgstr "Praćenje nije aktivno."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -639,7 +639,7 @@ msgstr "Pogled"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikacija"
@@ -681,7 +681,7 @@ msgstr "Proveri tabele koje imaju prekoračenja"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
@@ -749,10 +749,10 @@ msgstr "Proveri tabelu"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -774,7 +774,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -878,11 +878,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
-"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
+"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
+"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -922,7 +922,7 @@ msgstr "Obeleživač je upravo obrisan."
msgid "Showing bookmark"
msgstr "Prikazivanje markera"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Napravljen marker %s"
@@ -974,15 +974,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
@@ -1071,12 +1071,12 @@ msgstr "Ponovo učitavam privilegije"
msgid "Removing Selected Users"
msgstr "Ukloni izabrane korisnike"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1084,17 +1084,17 @@ msgstr ""
msgid "Edit"
msgstr "Promeni"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Izbor servera"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL upit"
@@ -1106,13 +1106,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Ukupno"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1144,7 +1144,7 @@ msgstr "Izbor servera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Procesi"
@@ -1164,172 +1164,204 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Statistike reda"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Keš upita"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Keš upita"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Keš upita"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Ukupno"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Skup prihvatnika"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Ukupno"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Slobodne strane"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Primljeno"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Konekcije"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Persijski"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Saobraćaj"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Ukloni bazu"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Drži se mreže"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "nema"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1337,386 +1369,386 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "Onemogućeno"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Naslov izveštaja"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Baza ne postoji"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Datoteke"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Datoteke"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Broj sortiranih redova."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Ukupno"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Lokalni"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Ponovo učitaj"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Uvoz"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Ažuriraj upit"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentacija"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Dokumentacija"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Otkaži"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Lokalni"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "U redu"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Preimenuj bazu u"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Remove database"
msgid "Reload Database"
msgstr "Ukloni bazu"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopiraj bazu u"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Karakter set"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabela mora imati barem jedno polje."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Napravi tabelu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Koristi tabele"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Ključevi"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Prikaži mrežu"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Pretraživanje"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL upit"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL upit"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Pregled"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Brišem %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL upit"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL upit"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Promeni"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1724,110 +1756,110 @@ msgstr ""
msgid "Save"
msgstr "Sačuvaj"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dodaj %s polja"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Izaberite referencirani ključ"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Izaberi strani ključ"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Molimo izaberite primarni ili jedinstveni ključ"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izaberi polja za prikaz"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Napravi lozinku"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Napravi"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1835,30 +1867,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Napravi relaciju"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Podaci"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodna"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1866,96 +1898,96 @@ msgid "Next"
msgstr "Sledeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "maj"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "avg"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1963,78 +1995,78 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2042,100 +2074,100 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sre"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2400,8 +2432,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@@ -2543,7 +2575,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabele"
@@ -2627,7 +2659,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2676,7 +2708,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL upit"
@@ -2714,7 +2746,7 @@ msgid "Create PHP Code"
msgstr "Napravi PHP kod"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Osveži"
@@ -2737,7 +2769,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Skladištenja"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilisanje"
@@ -2844,7 +2876,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5456,8 +5488,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@@ -5687,7 +5719,7 @@ msgstr "Sortiraj po ključu"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5758,7 +5790,7 @@ msgid "The row has been deleted"
msgstr "Red je obrisan"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Obustavi"
@@ -5774,7 +5806,7 @@ msgstr "Prikaz zapisa"
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
@@ -5851,7 +5883,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Skup prihvatnika"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6211,8 +6243,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6328,28 +6360,28 @@ msgid "Display MIME types"
msgstr "Dostupni MIME-tipovi"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Domaćin"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Vreme kreiranja"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Verzija servera"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "verzija PHP-a"
@@ -6550,50 +6582,50 @@ msgid "Generated by"
msgstr "Generisao"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Baza ne postoji"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Baza ne postoji"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Samo struktura"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7047,14 +7079,14 @@ msgid "Slave status"
msgstr "Prikaži status podređenih servera"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Promenljiva"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Vrednost"
@@ -7271,7 +7303,7 @@ msgid "Returns"
msgstr "Povratni tip"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Vreme"
@@ -7760,12 +7792,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binarni dnevnik"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Promenljive"
@@ -7823,11 +7855,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Zapamti SQL-upit"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
@@ -8292,7 +8324,7 @@ msgstr "Verzija protokola"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Korisnik"
@@ -8765,17 +8797,17 @@ msgstr "Tabela \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr "Izaberite binarni dnevnik za pregled"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Prikaži skraćene upite"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Prikaži kompletne upite"
@@ -9168,8 +9200,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@@ -9299,7 +9331,7 @@ msgstr "Privilegije su uspešno ponovo učitane."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
#, fuzzy
msgid "Show master status"
msgstr "Prikaži status podređenih servera"
@@ -9440,136 +9472,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Proces %s je uspešno prekinut."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Rukovalac"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Keš upita"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Niti"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Privremeni podaci"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Odložena umetanja"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Keš ključeva"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Spojevi"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortiranje"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Koordinator transakcija"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Očisti (zatvori) sve tabele"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Prikaži podređene server"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Prikaži status podređenih servera"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Očisti keš upita"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Informacije o toku rada"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Osveži"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemoj da menjaš lozinku"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vrsta upita"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funkcije"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9584,70 +9616,70 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "na sat"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "u minutu"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "u sekundi"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Ime"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9655,47 +9687,47 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "maks. istovremenih veza"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Naredba"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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 upisa načinjenih u datoteku dnevnika."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9705,16 +9737,16 @@ msgstr ""
"prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da "
"smeste izraze iz transakcije."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9726,11 +9758,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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Koliko privremenih datoteka je mysqld napravio."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9738,7 +9770,7 @@ msgstr ""
"Broj privremenih tabela koje je server automatski kreirao u memoriji dok je "
"izvršavao izraze."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9746,7 +9778,7 @@ msgstr ""
"Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška "
"(verovatno duplirani ključ)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9754,23 +9786,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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Broj upisanih INSERT DELAYED redova."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Broj izvršenih FLUSH izraza."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Broj internih COMMIT izraza."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Broj brisanja nekog reda tabele."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9780,7 +9812,7 @@ msgstr ""
"tabelu određenog imena. To se naziva otkrivanjem (discovery). "
"Handler_discover označava broj puta kada je otkrivena tabela."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9790,7 +9822,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:1152
+#: server_status.php:1194
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."
@@ -9798,7 +9830,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:1153
+#: server_status.php:1195
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 "
@@ -9808,7 +9840,7 @@ msgstr ""
"kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite "
"skeniranje indeksa."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9816,7 +9848,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:1155
+#: server_status.php:1197
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 "
@@ -9828,7 +9860,7 @@ msgstr ""
"mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve "
"koji ne koriste ključeve propisno."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9840,35 +9872,35 @@ msgstr ""
"nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već "
"postojeće indekse."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Broj internih ROLLBACK izraza."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Broj zahteva za ažuriranje reda u tabeli."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Broj zahteva za upisivanje reda u tabelu."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Broj strana koje su trenutno prljave."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Broj slobodnih strana."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9878,7 +9910,7 @@ msgstr ""
"čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene "
"niti uklonjene."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9890,11 +9922,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:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Puna veličina ostave bafera, u stranama."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9902,7 +9934,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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9910,11 +9942,11 @@ msgstr ""
"Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada "
"InnoDB radi sekvencijalno skeniranje cele tabele."
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9922,7 +9954,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:1171
+#: server_status.php:1213
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 "
@@ -9936,55 +9968,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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Broj upisa učinjenih u InnoDB ostavu bafera."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Broj fsync() operacija do sada."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Trenutni broj fsync() operacija na čekanju."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Trenutni broj čitanja na čekanju."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Trenutni broj upisa na čekanju."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Količina podataka pročitanih do sada, u bajtovima."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Ukupan broj čitanja podataka."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Ukupan broj upisa podataka."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Količina podataka upisanih do sada, u bajtovima"
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9992,35 +10024,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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Broj zahteva za upis u dnevnik."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Broj fizičkih upisa u datoteku dnevnika."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Broj fsync-ova za datoteku dnevnika na čekanju."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Broj upisa u datoteku dnevnika na čekanju."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Broj bajtova upisanih u datoteku dnevnika."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Broj napravljenih strana."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10029,52 +10061,52 @@ msgstr ""
"vrednosti se računaju u stranama; veličina strane omogućava da se one lako "
"konvertuju u bajtove."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Broj pročitanih strana."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Broj zapisanih strana."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Broj brava za redove koje se trenutno čekaju."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Broj redova obrisanih iz InnoDB tabela."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Broj redova umetnutih u InnoDB tabele."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Broj redova pročitanih iz InnoDB tabela."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Broj redova ažuriranih u InnoDB tabelama."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10082,7 +10114,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:1204
+#: server_status.php:1246
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."
@@ -10090,7 +10122,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:1205
+#: server_status.php:1247
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 "
@@ -10100,11 +10132,11 @@ msgstr ""
"vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u "
"isto vreme."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10114,15 +10146,15 @@ 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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -10132,17 +10164,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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10150,39 +10182,39 @@ msgstr ""
"Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je "
"verovatno premali."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Broj otvorenih datoteka."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Broj otvorenih tabela."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Količina slobodne memorije za keš upita."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Broj pogodaka iz keša."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Broj upita dodatih u keš."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10194,7 +10226,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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10202,19 +10234,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:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Broj upita registrovanih u kešu."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Ukupan broj blokova u kešu za upite."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status replikacije otporne na greške (nije još implementirano)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10222,11 +10254,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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10235,7 +10267,7 @@ msgstr ""
"reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših "
"tabela.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10243,15 +10275,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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10259,11 +10291,11 @@ msgstr ""
"Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju "
"pokušala transakcije."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10271,12 +10303,12 @@ msgstr ""
"Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile "
"pokrenute."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10286,23 +10318,23 @@ msgstr ""
"Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti "
"sistemske promenljive sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Broj sortiranja koja su urađena sa opsegom."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Broj sortiranih redova."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10314,7 +10346,7 @@ msgstr ""
"bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili "
"tabele ili da koristite replikaciju."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10324,11 +10356,11 @@ msgstr ""
"Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate "
"vaš thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Broj trenutno otvorenih veza."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10340,64 +10372,64 @@ msgstr ""
"implementaciju niti, ovo obično ne donosi primetna poboljšanja u "
"performansama.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Broj niti koje nisu uspavane."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sub"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Dodaj %s polja"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Osveži"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/obriši kolonu"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10406,7 +10438,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10414,7 +10446,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10426,7 +10458,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta upita"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10537,7 +10559,7 @@ msgstr[0] "u sekundi"
msgstr[1] "u sekundi"
msgstr[2] "u sekundi"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10956,36 +10978,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Pregledaj strane vrednosti"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Prikaz kao PHP kod"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Prikaz kao SQL upit"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Proveri SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem pri indeksiranju tabele `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Naziv"
@@ -11779,8 +11801,8 @@ msgid "Current amount of Questions: %s"
msgstr "maks. istovremenih veza"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Prikaži kompletne upite"
#: po/advisory_rules.php:16
@@ -11802,7 +11824,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Očisti keš upita"
#: po/advisory_rules.php:21
@@ -11983,12 +12005,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Zauzeće"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12045,8 +12061,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12155,9 +12171,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Dozvoljava kreiranje privremenih tabela.."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12175,13 +12191,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Dozvoljava kreiranje privremenih tabela.."
#: po/advisory_rules.php:113
#, php-format
@@ -12213,8 +12231,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Proveri tabelu"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12233,7 +12252,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12256,7 +12275,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12265,7 +12284,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12278,7 +12297,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12287,8 +12306,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12319,11 +12338,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabela"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12350,8 +12366,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabela"
#: po/advisory_rules.php:152
msgid ""
@@ -12392,8 +12411,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Veličina prihvatnika za sortiranje"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12413,8 +12434,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Veličina prihvatnika za sortiranje"
#: po/advisory_rules.php:168
#, php-format
@@ -12422,7 +12445,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12442,7 +12465,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Napravi tabelu"
#: po/advisory_rules.php:176
@@ -12463,10 +12486,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Prikaži otvorene tabele"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format datoteka za uvoz"
#: po/advisory_rules.php:181
msgid ""
@@ -12489,7 +12512,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format datoteka za uvoz"
#: po/advisory_rules.php:186
@@ -12536,7 +12559,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Keš ključeva"
#: po/advisory_rules.php:201
@@ -12554,8 +12577,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Praćenje nije aktivno."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12613,10 +12638,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Konekcije"
+#, fuzzy
+#| msgid "max. concurrent connections"
+msgid "Percentage of used connections"
+msgstr "maks. istovremenih veza"
#: po/advisory_rules.php:221
msgid ""
@@ -12640,7 +12665,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "maks. istovremenih veza"
#: po/advisory_rules.php:226
@@ -12663,7 +12688,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "max. concurrent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "maks. istovremenih veza"
#: po/advisory_rules.php:231
@@ -12677,8 +12702,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format datoteka za uvoz"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12699,7 +12726,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format datoteka za uvoz"
#: po/advisory_rules.php:243
@@ -12726,8 +12753,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Veličina prihvatnika"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12839,6 +12868,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Zauzeće"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Prikaži otvorene tabele"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Konekcije"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "maks. istovremenih veza"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Zauzeće"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Zauzeće"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/sv.po b/po/sv.po
index cd015aa78e..e12173d0c3 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-31 21:19+0200\n"
"Last-Translator: \n"
"Language-Team: swedish \n"
+"Language: sv\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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Visa alla"
@@ -47,7 +47,7 @@ msgstr "Sök"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Nyckel"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Beskrivning"
@@ -201,7 +201,7 @@ msgstr "Länkar till"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Kommentarer"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Nej"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Nej"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -355,7 +355,7 @@ msgstr "Editera eller exportera relationsschema"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -612,8 +612,8 @@ msgstr "Spårning är inte aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -623,7 +623,7 @@ msgstr "Vy"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikering"
@@ -665,7 +665,7 @@ msgstr "Markera ooptimerade"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportera"
@@ -727,10 +727,10 @@ msgstr "Spårade tabeller"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -750,7 +750,7 @@ msgstr "Uppdaterad"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Status"
@@ -849,8 +849,8 @@ msgstr "SQL-satserna har sparats till filen %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
"för att gå runt denna begränsning."
@@ -893,7 +893,7 @@ msgstr "Bokmärket har tagits bort."
msgid "Showing bookmark"
msgstr "Visar bokmärke"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmärket %s har skapats"
@@ -945,15 +945,15 @@ msgstr "Klicka för att markera"
msgid "Click to unselect"
msgstr "Klicka för att avmarkera"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" satserna är inaktiverade."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Vill du verkligen "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Du håller på att FÖRSTÖRA en hel databas!"
@@ -1028,12 +1028,12 @@ msgstr "Ladda om privilegier"
msgid "Removing Selected Users"
msgstr "Tar bort markerade användare"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Stäng"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1041,15 +1041,15 @@ msgstr "Stäng"
msgid "Edit"
msgstr "Ändra"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Live trafik diagram"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Live anslutning/process diagram"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Live sökfrågediagram"
@@ -1060,13 +1060,13 @@ msgstr "Statisk data"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Annan"
@@ -1096,7 +1096,7 @@ msgstr "Server trafik (i kb)"
msgid "Connections since last refresh"
msgstr "Anslutningar sedan förra uppdateringen"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Processer"
@@ -1114,172 +1114,204 @@ msgstr "Frågor sedan förra uppdateringen"
msgid "Questions (executed statements by the server)"
msgstr "Frågor (utförda kommandon från servern)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Visa statistik"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Kunde inte läsa konfigurationsfilen"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Frågecache"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Frågecache"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Frågecache"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "System processoranvändning"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Systemminne"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Genomsnittlig belastning"
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "System memory"
msgid "Total memory"
msgstr "Systemminne"
-#: js/messages.php:101
+#: js/messages.php:108
#, fuzzy
#| msgid "System memory"
msgid "Cached memory"
msgstr "Systemminne"
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Buffertutrymme"
-#: js/messages.php:103
+#: js/messages.php:110
#, fuzzy
#| msgid "System memory"
msgid "Free memory"
msgstr "Systemminne"
-#: js/messages.php:104
+#: js/messages.php:111
#, fuzzy
#| msgid "System memory"
msgid "Used memory"
msgstr "Systemminne"
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Total"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Fria sidor"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Mottagna"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Förbindelser"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Frågor"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Inställningar"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Ta bort diagram"
-#: js/messages.php:121
+#: js/messages.php:128
#, fuzzy
#| msgid "Edit labels and series"
msgid "Edit title and labels"
msgstr "Redigera etiketter och serier"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Adders diagrammet till rutnätet"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Lägg till minst en variabel till serien"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Inget"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "Återuppta monitor"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "Pausa monitor"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log och slow_query_log är aktiverade."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log är aktiverad."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log är aktiverad."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log och general_log är deaktiverade."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output är inte definierad som TABLE."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output är definerad som TABLE."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1290,12 +1322,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:136
+#: js/messages.php:143
#, 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:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1304,30 +1336,30 @@ msgstr ""
"standardvärdet när servern startas om:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "Aktivera %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "Inaktivera %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "Sätt long_query_time till %ds"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1335,41 +1367,41 @@ msgstr ""
"Du kan inte ändra dessa variabler. Logga in som root eller kontakta din "
"databasadministratör."
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Ändra inställningar"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Nuvarande inställningar"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Diagramtitel"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Differential"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Dividerat med %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Från långsam logg"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Från allmän logg"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "Analyserar och laddar loggar. Detta kan ta lite tid."
-#: js/messages.php:158
+#: js/messages.php:165
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 "
@@ -1379,7 +1411,7 @@ msgstr ""
"Men endast SQL Text blir jämförd, följaktligen blir frågorna andra attribut "
"som starttid kan variera."
-#: js/messages.php:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1388,256 +1420,256 @@ 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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr "Loggdata laddad. Frågorna utförda under denna tidsperiod:"
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Gå till tabellogg"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr "Loggdata laddad. Frågorna exekverade under denna tidsperiod:"
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Filter"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filter"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Filtrera frågor med ord/regexp:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "Gruppfrågor, ignorera variabeldata i WHERE kommandon"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Summan av grupperade rader:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Totalt:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Läser in loggar"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Uppdatera"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Importera"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Uppdatera fråga"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor system"
msgstr "Tillämpa en dividend"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentation"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "Detaljer"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Verifiering"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Avbryt"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Laddar"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Processa begäran"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Fel i processbegäran"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Tar bort kolumn"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Lägger till primär nyckel"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Döp om databaser"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Ladda om databas"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Kopiera databas"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Ändra teckenuppsättning"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tabellen måste ha åtminstone ett fält."
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Skapa tabell"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Lägg till en tabell"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "Dölj index"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "Visa index"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Söker"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Dölj sökresultat"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Visa sökresultat"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Bläddrar bland"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Raderar"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Göm sök-rutan"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Visa frågerutan"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Inga rader valda"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Ändra"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Exekveringstid för frågor"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1645,40 +1677,40 @@ msgstr "Exekveringstid för frågor"
msgid "Save"
msgstr "Spara"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Dölj sökkriterier"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Visa sökkriterier"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ignorera"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Addera kolumn"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Välj refererad nyckel"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Välj främmande nyckel"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Välj den primära nyckeln eller en unik nyckel"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Välj kolumn att visa"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1686,59 +1718,59 @@ msgstr ""
"Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte "
"sparar dem. Vill du fortsätta?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Välj ett alternativ för kolumn"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Dra för att ändra ordning"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Klicka för att sortera"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "Klicka för att markera/avmarkera"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Skapa lösenord"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generera"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Ändra lösenord"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Mera"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1748,27 +1780,27 @@ msgstr ""
"senaste versionen är %s, publicerad den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr "senaste stabila version:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "aktuell"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Klart"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Föregående"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1776,149 +1808,149 @@ msgid "Next"
msgstr "Nästa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Idag"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "januari"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "februari"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "mars"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "april"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "maj"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "juni"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "juli"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "augusti"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "september"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "oktober"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "november"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "dec"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Söndag"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Måndag"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Tisdag"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Lördag"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1926,84 +1958,84 @@ msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Lör"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Sö"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Må"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "On"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Lö"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Vecka"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Timmar"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Minuter"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Sekunder"
@@ -2260,11 +2292,11 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
-"$suppsättningsskript%2$s för att skapa denna."
+"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
+"%1$suppsättningsskript%2$s för att skapa denna."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2405,7 +2437,7 @@ msgstr "delad"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tabeller"
@@ -2484,7 +2516,7 @@ 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:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2533,7 +2565,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-fråga"
@@ -2571,7 +2603,7 @@ msgid "Create PHP Code"
msgstr "Skapa PHP-kod"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Uppdatera"
@@ -2592,7 +2624,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Infogad"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profilering"
@@ -2697,7 +2729,7 @@ msgstr "Klicka för att växla"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5314,8 +5346,8 @@ msgstr ", @TABLE@ blir tabellnamnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@@ -5519,7 +5551,7 @@ msgstr "Sortera efter nyckel"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5583,7 +5615,7 @@ msgid "The row has been deleted"
msgstr "Raden har raderats"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Döda"
@@ -5599,7 +5631,7 @@ msgstr "Visar rader"
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Frågan tog %01.4f sek"
@@ -5672,7 +5704,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffertutrymme"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB-status"
@@ -6067,11 +6099,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
-"s."
+"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
+"%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6163,28 +6195,28 @@ msgid "Display MIME types"
msgstr "Visa MIME-typer"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Värd"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Skapad"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Serverversion"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP-version"
@@ -6397,51 +6429,51 @@ msgid "Generated by"
msgstr "Genererad av"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Visa en strukturs innehåll genom att klicka på namnet"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ"
"\" länk"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Redigera strukturen genom att följa \"Structure\" länken"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Gå till databas"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "Saknar data för %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Gå till tabell"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Enbart struktur"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Gå till vy"
@@ -6900,14 +6932,14 @@ msgid "Slave status"
msgstr "Slav-status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Värde"
@@ -7114,7 +7146,7 @@ msgid "Returns"
msgstr "Returnerar"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Tid"
@@ -7547,12 +7579,12 @@ msgid "Synchronize"
msgstr "Synkronisera"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binär logg"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Variabler"
@@ -7605,11 +7637,11 @@ msgstr "Rensa"
msgid "Columns"
msgstr "Kolumn"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Skapa bokmärke för den här SQL-frågan"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Låt varje användare få tillgång till detta bokmärke"
@@ -8023,7 +8055,7 @@ msgstr "Protokollversion"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Användare"
@@ -8159,8 +8191,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
-"s. Detta kan orsaka oförutsägbara beteenden."
+"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
+"%s. Detta kan orsaka oförutsägbara beteenden."
#: main.php:341
#, php-format
@@ -8465,17 +8497,17 @@ msgstr "Filen finns inte"
msgid "Select binary log to view"
msgstr "Välj binär logg att visa"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Korta av visade frågor"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Visa fullständiga frågor"
@@ -8865,8 +8897,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s "
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
@@ -8997,7 +9029,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Visa master-status"
@@ -9144,131 +9176,131 @@ msgstr ""
"Denna server är inte konfigurerad som slav i en replikering process. Vill du "
"konfigurera den?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråden %s dödades med framgång."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Hanterare"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Frågecache"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Trådar"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Temporära data"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Fördröjda infogningar"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Nyckelcache"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Kopplingar"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Transaktionssamordnare"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Flush (stäng) alla tabeller"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Visa öppna tabeller"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Visa slav-värdar"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Visa slav-status"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Rensa frågecache"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Körningsinformation"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Alla statusvariabler"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "Övervaka"
-#: server_status.php:648
+#: server_status.php:690
#, fuzzy
#| msgid "Apply a divisor"
msgid "Advisor"
msgstr "Tillämpa en dividend"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Uppdateringsfrekvens:"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "Innehåller ordet:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Visa endast varnings värden"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Filtrera efter kategori ..."
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show only alert values"
msgid "Show unformatted values"
msgstr "Visa endast varnings värden"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "Liknande länkar:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Fråge analyserare"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Instructions/Setup"
msgid "Instructions"
msgstr "Instruktioner/Setup"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9283,44 +9315,44 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Frågor sedan start: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "per timme"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "per minut"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "per sekund"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Uppgifterna"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Nätverkstrafik sedan start:%s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9328,17 +9360,17 @@ msgstr ""
"Denna MySQL-server fungerar sommaster ochslave i "
"replicerings process."
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denna MySQL server arbetar som master in replication process."
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denna MySQL server arbetar som slave in replication process."
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9346,11 +9378,11 @@ msgstr ""
"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Replikeringsstatus"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9358,35 +9390,35 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Mottagna"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Skickade"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Max. samtidiga förbindelser"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Misslyckade försök"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Avbrutna"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Kommando"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9394,11 +9426,11 @@ msgstr ""
"Antalet anslutningar som avbröts eftersom klienten dog utan att stänga "
"anslutningen ordentligt."
-#: server_status.php:1137
+#: server_status.php:1179
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:1138
+#: server_status.php:1180
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 "
@@ -9408,16 +9440,16 @@ msgstr ""
"överskred värdet binlog_cache_size och använde en temporär fil för att lagra "
"satser från transaktionen."
-#: server_status.php:1139
+#: server_status.php:1181
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:1140
+#: server_status.php:1182
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:1141
+#: server_status.php:1183
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 "
@@ -9429,11 +9461,11 @@ msgstr ""
"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:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Antalet temporära filer som mysqld har skapat."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9441,7 +9473,7 @@ msgstr ""
"Antalet temporära tabeller i minne skapade automatiskt av servern under "
"utförande av satser."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9449,7 +9481,7 @@ msgstr ""
"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod "
"(förmodligen dubblerad nyckel)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9457,23 +9489,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "Antalet skrivna rader med INSERT DELAYED."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Antalet utförda FLUSH-satser."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Antalet interna COMMIT-satser."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9483,7 +9515,7 @@ msgstr ""
"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar "
"antalet gånger tabeller har upptäckts."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9493,7 +9525,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9502,7 +9534,7 @@ msgstr ""
"är högt är det en bra indikation på att dina frågor och tabeller är riktigt "
"indexerade."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9512,7 +9544,7 @@ msgstr ""
"värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du "
"gör en indexavsökning."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9520,7 +9552,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -9532,7 +9564,7 @@ msgstr ""
"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:1156
+#: server_status.php:1198
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 "
@@ -9544,35 +9576,35 @@ msgstr ""
"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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Antalet interna ROLLBACK-satser."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antalet sidor innehållande data (orena eller rena)."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Antalet sidor för närvarande orena."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Antalet tomma sidor."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9582,7 +9614,7 @@ msgstr ""
"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan "
"anledning."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9594,11 +9626,11 @@ msgstr ""
"också beräknas som Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Total storlek på buffert, i antal sidor."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9606,7 +9638,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9614,11 +9646,11 @@ 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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9626,7 +9658,7 @@ msgstr ""
"Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och "
"fick göra en enkelsidig läsning."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -9640,51 +9672,51 @@ msgstr ""
"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta "
"värde vara litet."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antalet skrivningar gjorda till InnoDB-bufferten."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Antalet fsync()-operationer hittills."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Nuvarande antal väntande fsync()-operationer."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Nuvarande antal väntande läsningar."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Nuvarande antal väntande skrivningar."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Mängden data läst hittills, i bytes."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Totalt antal läsningar av data."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Totalt antal skrivningar av data."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Mängden data skriven hittills, i bytes."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Antalet doublewrite transaktioner som har utförts.."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -9692,35 +9724,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Antalet skriv-begäran att skriva till logg."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Antalet fysiska skrivningar till loggfilen."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Antalet fsync()-skrivningar gjorda till loggfilen."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Antalet väntande fsync() av loggfil."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Väntande skrivningar till loggfil."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Antalet bytes skrivna till loggfilen."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Antalet skapade sidor."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9728,51 +9760,51 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Antalet lästa sidor."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Antalet skrivna sidor."
-#: server_status.php:1194
+#: server_status.php:1236
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:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antalet rader borttagna från InnoDB-tabeller."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antalet rader tillagda i InnoDB-tabeller."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "Antalet rader lästa från InnoDB-tabeller."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "Antalet rader uppdaterade i InnoDB-tabeller."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9780,7 +9812,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -9788,7 +9820,7 @@ 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:1205
+#: server_status.php:1247
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 "
@@ -9797,11 +9829,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9811,15 +9843,15 @@ msgstr ""
"ä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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -9830,7 +9862,7 @@ msgstr ""
"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats "
"ännu."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -9838,11 +9870,11 @@ msgstr ""
"Det maximala antalet anslutningar som har använts samtidigt sedan servern "
"startade."
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9850,19 +9882,19 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Antalet filer som är öppna."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Antalet tabeller som är öppna."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9871,19 +9903,19 @@ 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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Mängden fritt minne för frågecache."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Antalet cache-träffar."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Antalet förfrågningar tillagda i cachen."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9895,7 +9927,7 @@ msgstr ""
"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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9903,19 +9935,19 @@ msgstr ""
"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga "
"inställningen query_cache_type)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Antalet frågor registrerade i cachen."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Totala antalet block i frågecachen."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status för felsäker replikering (ännu inte implementerat)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9923,11 +9955,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9936,7 +9968,7 @@ msgstr ""
"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för "
"dina tabeller.)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9944,17 +9976,17 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9962,25 +9994,25 @@ msgstr ""
"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har "
"omprövat transaktioner."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
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:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -9990,23 +10022,23 @@ msgstr ""
"detta värde är stort bör du överväga att öka värdet i systemvariabeln "
"sort_buffer_size."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Antalet sorteringar som gjordes med intervall."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Antalet sorterade rader."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10018,7 +10050,7 @@ msgstr ""
"du först optimera dina frågor och antingen dela upp din tabell eller "
"tabeller eller använda replikering."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10028,11 +10060,11 @@ msgstr ""
"Threads_created/Connections. Om detta värde är rött bör du öka värdet "
"thread_cache_size."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Antalet öppna förbindelser."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10044,63 +10076,63 @@ msgstr ""
"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra "
"trådimplementering.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Antalet trådar som inte är vilande."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "Starta Monitor"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Instruktioner/Setup"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Klar ändra/editera diagram"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Lägg till diagram"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Ordna/editera diagram"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Uppdateringsfrekvens"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Chart columns:"
msgid "Chart columns"
msgstr "Visa kolumner:"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Felhantering:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Återställ standardvärde"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "Övervaka instruktioner"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10114,7 +10146,7 @@ msgstr ""
"Observera att general_log producerar mycket data och ökar lasten på servern "
"med upp till 15%"
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10122,7 +10154,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
#, fuzzy
#| msgid ""
#| "Using the monitor: Ok, you are good to go! Once you click "
@@ -10155,7 +10187,7 @@ msgstr ""
"statistik från loggarna vilka hjälper dig att hitta vad som orsakade \n"
" aktivitetstopp. p>"
-#: server_status.php:1459
+#: server_status.php:1501
#, fuzzy
#| msgid ""
#| "Please note: Enabling the general_log may increase the server load "
@@ -10177,75 +10209,69 @@ msgstr ""
"samt att inaktivera general_log och tömma tabellen när övervakningen inte "
"behövs längre. \n"
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU Användning"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Ta bort diagram"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Minnesanvändning"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Swap användning"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Alla statusvariabler"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Välj serier:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Vanligen övervakade"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "eller skriv ett variabelnamn:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Visa som differensvärde"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Tillämpa en dividend"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Lägg till enhet till datavärdena"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Lägg till denna serie"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Rensa serier"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Serier i diagram:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Logga statistik"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Valt tidsintervall:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Hämta endast SELECT, INSERT, UPDATE och DELETE kommandon"
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Ta bort variabeldata med INSERT kommandon för bättre gruppering"
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10253,18 +10279,18 @@ msgstr ""
"
Välj den logg du vill att statistiken ska genereras från.
Resultaten "
"grupperas efter frågetexten."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Fråge analyserare"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d sekund"
msgstr[1] "%d sekunder"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10662,8 +10688,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %"
-"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
+"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - "
+"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till"
@@ -10725,34 +10751,34 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken."
msgid "Browse foreign values"
msgstr "Bläddra bland främmande värden"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Använd bokmärke \"% s\" som standard webbläsarfråga."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Infogade rad id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "Visar som PHP-kod"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "Visar SQL-fråga"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Validerad SQL-kod"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem med index för tabell `%s`"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etikett"
@@ -11494,9 +11520,9 @@ msgid "Current amount of Questions: %s"
msgstr "Nuvarande anslutning"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Visa SQL-frågor"
#: po/advisory_rules.php:16
@@ -11518,7 +11544,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Rensa frågecache"
#: po/advisory_rules.php:21
@@ -11706,12 +11732,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Visa använt utrymme"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11768,8 +11788,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11878,9 +11898,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Tillåter skapande av temporära tabeller."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11898,13 +11918,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Tillåter skapande av temporära tabeller."
#: po/advisory_rules.php:113
#, php-format
@@ -11936,8 +11958,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "Det finns inga rutiner att visa."
#: po/advisory_rules.php:121
#, fuzzy
@@ -11957,7 +11981,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11980,7 +12004,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11989,7 +12013,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12002,8 +12026,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "Var länkarna i tabellraden visas"
#: po/advisory_rules.php:136
#, fuzzy
@@ -12013,8 +12039,8 @@ msgstr "Var länkarna i tabellraden visas"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12046,10 +12072,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tabell"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Var länkarna i tabellraden visas"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12076,8 +12101,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s tabell"
#: po/advisory_rules.php:152
msgid ""
@@ -12118,8 +12146,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Storlek för sorteringsbuffert"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12139,8 +12169,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Storlek för sorteringsbuffert"
#: po/advisory_rules.php:168
#, php-format
@@ -12148,7 +12180,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12168,7 +12200,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Skapa tabell"
#: po/advisory_rules.php:176
@@ -12189,10 +12221,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Visa öppna tabeller"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Format på importerad fil"
#: po/advisory_rules.php:181
msgid ""
@@ -12215,7 +12247,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Format på importerad fil"
#: po/advisory_rules.php:186
@@ -12262,7 +12294,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Nyckelcache"
#: po/advisory_rules.php:201
@@ -12280,8 +12312,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Spårning är inte aktiv."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12340,10 +12374,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time är definerad till %d sekund(er)."
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Förbindelser"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Bestående anslutningar"
#: po/advisory_rules.php:221
msgid ""
@@ -12366,9 +12400,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Komprimera anslutning"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Bestående anslutningar"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12390,7 +12424,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Bestående anslutningar"
#: po/advisory_rules.php:231
@@ -12404,8 +12438,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Format på importerad fil"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12426,7 +12462,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Format på importerad fil"
#: po/advisory_rules.php:243
@@ -12453,8 +12489,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Buffertstorlek"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12566,6 +12604,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Visa använt utrymme"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Visa öppna tabeller"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Förbindelser"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Komprimera anslutning"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU Användning"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Minnesanvändning"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Swap användning"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS arbetsbok"
diff --git a/po/ta.po b/po/ta.po
index 107eb8ab23..1676c411ef 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,18 +6,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
+"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr ""
@@ -47,7 +47,7 @@ msgstr "தேடல்"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr ""
@@ -199,7 +199,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -210,12 +210,12 @@ msgstr ""
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr ""
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -231,7 +231,7 @@ msgstr ""
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -352,7 +352,7 @@ msgstr ""
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -612,8 +612,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -623,7 +623,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -665,7 +665,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
@@ -729,10 +729,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -752,7 +752,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr ""
@@ -849,8 +849,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -886,7 +886,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -933,15 +933,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1018,12 +1018,12 @@ msgstr ""
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1031,15 +1031,15 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr ""
@@ -1050,13 +1050,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1086,7 +1086,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1104,154 +1104,178 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr ""
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+msgid "Query cache efficiency"
+msgstr ""
+
+#: js/messages.php:97 po/advisory_rules.php:70
+msgid "Query cache usage"
+msgstr ""
+
+#: js/messages.php:98
+msgid "Query cache used"
+msgstr ""
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr ""
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr ""
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr ""
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1259,335 +1283,335 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, php-format
msgid "Set log_output to %s"
msgstr ""
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr ""
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr ""
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr ""
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr ""
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr ""
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr ""
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr ""
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr ""
-#: js/messages.php:185
+#: js/messages.php:192
msgid "Analyse Query"
msgstr ""
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
msgid "Recommendation"
msgstr ""
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Action"
msgid "Justification"
msgstr "செயல்"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "விலக்கு"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr ""
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr ""
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr ""
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "You have added a new user."
msgid "Table must have at least one column"
msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr ""
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr ""
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr ""
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr ""
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr ""
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr ""
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr ""
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr ""
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1595,102 +1619,102 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr ""
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s களத்தை சேர்க்க"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr ""
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr ""
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "திங்கள்"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1698,120 +1722,120 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr ""
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr ""
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Jan"
msgid "January"
msgstr "தை"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "பங்குனி"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "சித்திரை"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "வைகாசி"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ஆணி"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ஆடி"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ஆவணி"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ஐப்பசி"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1819,78 +1843,78 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "மார்கழி"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ஞாயிறு"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "திங்கள்"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "செவ்வாய்"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "வெள்ளி"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1898,98 +1922,98 @@ msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "திங்கள்"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "செவ்வாய்"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "புதன்"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "வியாழன்"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "வெள்ளி"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "சனி"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ஞாயிறு"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "திங்கள்"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "செவ்வாய்"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "புதன்"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "வியாழன்"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "வெள்ளி"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "சனி"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr ""
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr ""
@@ -2237,8 +2261,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
"பயன்படுத்தலாம்"
@@ -2377,7 +2401,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr ""
@@ -2452,7 +2476,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr ""
@@ -2501,7 +2525,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr ""
@@ -2539,7 +2563,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2560,7 +2584,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "உள்வரிசை"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2657,7 +2681,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5104,8 +5128,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5294,7 +5318,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5358,7 +5382,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5374,7 +5398,7 @@ msgstr ""
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5445,7 +5469,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5786,8 +5810,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5882,28 +5906,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr ""
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6094,47 +6118,47 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr ""
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6576,14 +6600,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr ""
@@ -6785,7 +6809,7 @@ msgid "Returns"
msgstr "செயல்கள்"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr ""
@@ -7228,12 +7252,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7286,11 +7310,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7635,7 +7659,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr ""
@@ -8044,17 +8068,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8432,8 +8456,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8553,7 +8577,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8686,122 +8710,122 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr ""
-#: server_status.php:758
+#: server_status.php:800
msgid "Run analyzer"
msgstr ""
-#: server_status.php:759
+#: server_status.php:801
msgid "Instructions"
msgstr ""
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -8816,128 +8840,128 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "நிறுத்தப்பட்டுள்ளது"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr ""
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -8945,78 +8969,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9024,7 +9048,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9032,42 +9056,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9075,33 +9099,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9110,227 +9134,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9338,99 +9362,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9438,18 +9462,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9457,61 +9481,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "%s களத்தை சேர்க்க"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9520,7 +9544,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9528,7 +9552,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9540,7 +9564,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9549,94 +9573,86 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
-msgid "CPU Usage"
+#: server_status.php:1513
+msgid "Preset chart"
msgstr ""
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr ""
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr ""
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr ""
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10041,34 +10057,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -10813,8 +10829,7 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -10834,7 +10849,7 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: po/advisory_rules.php:20
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr ""
#: po/advisory_rules.php:21
@@ -11002,10 +11017,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-msgid "memcached usage"
-msgstr ""
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11060,8 +11071,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11162,8 +11173,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11179,12 +11189,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11215,7 +11225,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11234,7 +11244,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11257,7 +11267,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11266,7 +11276,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11279,7 +11289,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11288,8 +11298,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11320,7 +11330,7 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-msgid "% temp disk tables"
+msgid "Percentage of temp tables on disk"
msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
@@ -11348,7 +11358,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
+msgid "Temp disk rate"
msgstr ""
#: po/advisory_rules.php:152
@@ -11388,7 +11398,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11409,7 +11419,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11418,7 +11428,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11436,8 +11446,10 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:175
-msgid "rate of table open"
-msgstr ""
+#, fuzzy
+#| msgid "Display table filter"
+msgid "Rate of table open"
+msgstr "கருதிட்குள் சேர்க்க"
#: po/advisory_rules.php:176
msgid "The rate of opening tables is high."
@@ -11455,8 +11467,7 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, php-format
-msgid "% open files"
+msgid "Percentage of used open files limit"
msgstr ""
#: po/advisory_rules.php:181
@@ -11478,7 +11489,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:185
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr ""
#: po/advisory_rules.php:186
@@ -11517,7 +11528,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11535,7 +11546,7 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
+msgid "Thread cache hit rate %"
msgstr ""
#: po/advisory_rules.php:206
@@ -11590,8 +11601,7 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, php-format
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr ""
#: po/advisory_rules.php:221
@@ -11614,7 +11624,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr ""
#: po/advisory_rules.php:226
@@ -11635,7 +11645,7 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr ""
#: po/advisory_rules.php:231
@@ -11649,7 +11659,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
+msgid "Percentage of aborted clients"
msgstr ""
#: po/advisory_rules.php:236 po/advisory_rules.php:241
@@ -11669,7 +11679,7 @@ msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
#: po/advisory_rules.php:240
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr ""
#: po/advisory_rules.php:243
@@ -11694,7 +11704,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
diff --git a/po/te.po b/po/te.po
index 07a86cd025..34e3cba503 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,18 +6,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
+"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: te\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "అన్నీ చూపించు"
@@ -48,7 +48,7 @@ msgstr "శోధించు"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "వివరణ"
@@ -203,7 +203,7 @@ msgstr ""
msgid "Comments"
msgstr "వ్యాఖ్యలు"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -214,12 +214,12 @@ msgstr "వ్యాఖ్యలు"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "కాదు"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -235,7 +235,7 @@ msgstr "కాదు"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -358,7 +358,7 @@ msgstr ""
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -622,8 +622,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
# మొదటి అనువాదము
@@ -634,7 +634,7 @@ msgstr "చూపుము"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -677,7 +677,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ఎగుమతి"
@@ -743,10 +743,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -766,7 +766,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "స్థితి"
@@ -863,8 +863,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -900,7 +900,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -947,15 +947,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1036,12 +1036,12 @@ msgstr ""
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "మూసివేయి"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1049,15 +1049,15 @@ msgstr "మూసివేయి"
msgid "Edit"
msgstr "మార్చు"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr ""
@@ -1068,13 +1068,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "మొత్తం"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1104,7 +1104,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1124,165 +1124,191 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
msgstr "గణాంకాలను చూపించు"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Server configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "సేవకి స్వరూపణం"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+msgid "Query cache efficiency"
+msgstr ""
+
+#: js/messages.php:97 po/advisory_rules.php:70
+msgid "Query cache usage"
+msgstr ""
+
+#: js/messages.php:98
+msgid "Query cache used"
+msgstr ""
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "మెబై"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "కిబై"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "మొత్తం"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "మొత్తం"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "అనుసంధానాలు"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Relations"
msgid "Questions"
msgstr "సంబంధాలు"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "అమరికలు"
# మొదటి అనువాదము
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "డేటాబేస్ తొలగించండి"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "ఏమీలేదు"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1290,154 +1316,154 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, php-format
msgid "Set log_output to %s"
msgstr ""
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Tables"
msgid "Enable %s"
msgstr "పట్టికలు"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable Statistics"
msgid "Disable %s"
msgstr "గణాంకాలని అచేతనంచేయి"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Basic settings"
msgid "Change settings"
msgstr "ప్రాధమిక అమరికలు"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "మరిన్ని అమరికలు"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Default title"
msgid "Chart Title"
msgstr "అప్రమేయ శీర్షిక"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "తేడా"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr ""
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "మొత్తం"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr ""
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
@@ -1445,225 +1471,225 @@ msgid ""
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Database"
msgid "Reload page"
msgstr "డేటాబేస్"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "దిగుమతి"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "క్వెరీ ని మార్చు"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "పత్రావళి"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "వివరాలు..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "అధీకరణ"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "రద్దుచేయి"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "సరే"
# మొదటి అనువాదము
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Database"
msgid "Renaming Databases"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Database"
msgid "Reload Database"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Database"
msgid "Copying Database"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "అక్షరమాల"
# మొదటి అనువాదము
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "You have added a new user."
msgid "Table must have at least one column"
msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు"
# మొదటి అనువాదము
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create a page"
msgid "Create Table"
msgstr "పుటని సృష్టించు"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "పట్టికల్ని వాడు"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr ""
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "శోధించు"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr ""
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "తొలగించు"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr ""
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr ""
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "మార్చుము"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1671,101 +1697,101 @@ msgstr ""
msgid "Save"
msgstr "భద్రపరచు"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add into comments"
msgid "Add columns"
msgstr "స్పందనలకు చేర్చు"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr ""
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "సంకేతపదాన్ని మార్చు"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "మరిన్ని"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1773,21 +1799,21 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
@@ -1795,7 +1821,7 @@ msgid "Prev"
msgstr "గత"
# మొదటి అనువాదము
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1803,149 +1829,149 @@ msgid "Next"
msgstr "తదుపరి"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "ఈరోజు"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "జనవరి"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "ఫిబ్రవరి"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "మార్చి"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "ఏప్రిల్"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "మే"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "జూన్"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "జూలై"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "ఆగస్ట్"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "సెప్టెంబర్"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "అక్టోబర్"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "నవంబర్"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "డిసెంబర్"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "డిసెం"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "ఆదివారం"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "సోమవారం"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "మంగళవారం"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "బుధవారం"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "గురువారం"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "శుక్రవారం"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "శనివారం"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1953,85 +1979,85 @@ msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "శని"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "ఆ"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "సో"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "మం"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "బు"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "గు"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "శు"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "శ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "వారం"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "గంట"
# మొదటి అనువాదము
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "నిమిషం"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "క్షణం"
@@ -2284,8 +2310,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2427,7 +2453,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "పట్టికలు"
@@ -2504,7 +2530,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr ""
@@ -2554,7 +2580,7 @@ msgid "Documentation"
msgstr "పత్రావళి"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr ""
@@ -2592,7 +2618,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr ""
@@ -2613,7 +2639,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2721,7 +2747,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5193,8 +5219,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5385,7 +5411,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5450,7 +5476,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5466,7 +5492,7 @@ msgstr ""
msgid "total"
msgstr "మొత్తం"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5540,7 +5566,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5885,8 +5911,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5979,28 +6005,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr ""
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6195,48 +6221,48 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "నిర్మాణం మాత్రమే"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6692,14 +6718,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "విలువ"
@@ -6917,7 +6943,7 @@ msgid "Returns"
msgstr "పట్టిక ఎంపికలు"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "సమయం"
@@ -7381,12 +7407,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7441,11 +7467,11 @@ msgstr ""
msgid "Columns"
msgstr "వ్యాఖ్యలు"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7799,7 +7825,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "వాడుకరి"
@@ -8228,17 +8254,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "దస్త్రాలు"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8618,8 +8644,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8744,7 +8770,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8877,129 +8903,129 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "సంబంధాలు"
# మొదటి అనువాదము
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Analyze"
msgid "Run analyzer"
msgstr "విశదీకరించు"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Administration"
msgid "Instructions"
msgstr "పరిపాలన"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9014,130 +9040,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "గంటకి"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "నిమిషానికి"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "క్షణానికి"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "పంపించు"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "ఆజ్ఞ"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9145,78 +9171,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9224,7 +9250,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9232,42 +9258,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9275,33 +9301,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9310,230 +9336,230 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "సృష్టించబడిన పుటల సంఖ్య"
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "చదివిన పుటల సంఖ్య"
# మొదటి అనువాదము
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "వ్రాసిన పుటల సంఖ్య"
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9541,99 +9567,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9641,18 +9667,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9660,66 +9686,66 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "మొదలుపెట్టు"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add into comments"
msgid "Add chart"
msgstr "స్పందనలకు చేర్చు"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Table comments"
msgid "Chart columns"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Reset to default"
msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9728,7 +9754,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9736,7 +9762,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9748,7 +9774,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9757,93 +9783,84 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+# మొదటి అనువాదము
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "వాడుక"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "డేటాబేస్ తొలగించండి"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "వాడుక"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr ""
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "గణాంకాలను చూపించు"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -9852,7 +9869,7 @@ msgstr[0] "క్షణం"
msgstr[1] "క్షణం"
# మొదటి అనువాదము
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10265,34 +10282,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -11055,8 +11072,7 @@ msgid "Current amount of Questions: %s"
msgstr "అనుసంధానాలు"
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -11076,7 +11092,7 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: po/advisory_rules.php:20
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr ""
#: po/advisory_rules.php:21
@@ -11245,10 +11261,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-msgid "memcached usage"
-msgstr ""
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11303,8 +11315,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11405,8 +11417,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11422,12 +11433,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11460,7 +11471,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11479,7 +11490,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11502,7 +11513,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11511,7 +11522,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11524,7 +11535,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11533,8 +11544,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11565,11 +11576,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s పట్టిక"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11596,8 +11604,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s పట్టిక"
#: po/advisory_rules.php:152
msgid ""
@@ -11636,7 +11647,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11657,7 +11668,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11666,7 +11677,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11688,7 +11699,7 @@ msgstr ""
#, fuzzy
#| msgctxt "short form"
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "పట్టికను సృష్టించు"
#: po/advisory_rules.php:176
@@ -11707,8 +11718,7 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, php-format
-msgid "% open files"
+msgid "Percentage of used open files limit"
msgstr ""
#: po/advisory_rules.php:181
@@ -11730,8 +11740,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:185
-msgid "rate of open files"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Rate of open files"
+msgstr "విషయ సూచిక"
#: po/advisory_rules.php:186
msgid "The rate of opening files is high."
@@ -11769,7 +11781,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11787,7 +11799,7 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
+msgid "Thread cache hit rate %"
msgstr ""
#: po/advisory_rules.php:206
@@ -11842,9 +11854,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "అనుసంధానాలు"
#: po/advisory_rules.php:221
@@ -11869,7 +11881,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "అనుసంధానాలు"
#: po/advisory_rules.php:226
@@ -11892,7 +11904,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "అనుసంధానాలు"
#: po/advisory_rules.php:231
@@ -11906,8 +11918,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "విషయ సూచిక"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -11928,7 +11942,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "విషయ సూచిక"
#: po/advisory_rules.php:243
@@ -11955,7 +11969,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12062,6 +12076,22 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "అనుసంధానాలు"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "అనుసంధానాలు"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "వాడుక"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "వాడుక"
+
# మొదటి అనువాదము
#, fuzzy
#~ msgctxt "PDF"
diff --git a/po/th.po b/po/th.po
index 8a15cde9f0..ccac83dbe2 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-24 11:50+0200\n"
"Last-Translator: Waitaya Krongapiradee \n"
"Language-Team: thai
\n"
+"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "แสดงทั้งหมด"
@@ -46,7 +46,7 @@ msgstr "ค้นหา"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "ชื่อคีย์"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "คำอธิบาย"
@@ -198,7 +198,7 @@ msgstr "เชื่อมไปยัง"
msgid "Comments"
msgstr "หมายเหตุ"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -209,12 +209,12 @@ msgstr "หมายเหตุ"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "ไม่"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -230,7 +230,7 @@ msgstr "ไม่"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -351,7 +351,7 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -614,8 +614,8 @@ msgstr "หยุดการติดตามแล้ว"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -625,7 +625,7 @@ msgstr "วิว"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง"
@@ -667,7 +667,7 @@ msgstr "ตรวจสอบตารางที่มี overhead"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ส่งออก"
@@ -733,10 +733,10 @@ msgstr "ตารางที่ถูกติดตาม"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -757,7 +757,7 @@ msgstr "ปรับปรุงแล้ว"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "สถานะ"
@@ -854,8 +854,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -891,7 +891,7 @@ msgstr "ลบคำค้นที่จดไว้เรียบร้อย
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -938,15 +938,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้"
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "ต้องการจะ "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1030,12 +1030,12 @@ msgstr "สิทธิแบบโกลบอล"
msgid "Removing Selected Users"
msgstr "ถอนผู้ใช้ที่เลือก"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1043,17 +1043,17 @@ msgstr ""
msgid "Edit"
msgstr "แก้ไข"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "ตัวเลือกเซิร์ฟเวอร์"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "คำค้น SQL"
@@ -1065,13 +1065,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "รวม"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1103,7 +1103,7 @@ msgstr "ตัวเลือกเซิร์ฟเวอร์"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "โพรเซส"
@@ -1123,167 +1123,194 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "สถิติของแถว"
#: js/messages.php:93
-msgid "System CPU Usage"
+msgid "Local monitor configuration icompatible"
msgstr ""
#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+msgid "Query cache efficiency"
+msgstr "ชนิดคำค้น"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+msgid "Query cache usage"
+msgstr "ชนิดคำค้น"
+
+#: js/messages.php:98
+#, fuzzy
+msgid "Query cache used"
+msgstr "ชนิดคำค้น"
+
+#: js/messages.php:100
+msgid "System CPU Usage"
+msgstr ""
+
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "เมกกะไบต์"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "กิโลไบต์"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "รวม"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "รวม"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "ได้รับ"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "การเชื่อมต่อ"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "รุ่น"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "การจราจร"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "ความสามารถด้านรีเลชันทั่วไป"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "เอาฐานข้อมูลออก"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "ไม่มี"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1291,384 +1318,384 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "เปิดใช้อยู่"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "ระงับการใช้อยู่"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "ความสามารถด้านรีเลชันทั่วไป"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "ความสามารถด้านรีเลชันทั่วไป"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "นำเข้าไฟล์"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "ไม่มีฐานข้อมูล"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows per page"
msgid "Sum of grouped rows:"
msgstr "ระเบียนต่อหน้า"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "รวม"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "โลคอล"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
#, fuzzy
msgid "Import"
msgstr "ส่งออก"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "ปรับปรุงคำค้น"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "เอกสารอ้างอิง"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "เอกสารอ้างอิง"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "โลคอล"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "โพรเซส"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ตกลง"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
msgid "Copying Database"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "ชุดตัวอักษร"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "เริ่มหน้าใหม่"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "ใช้ตาราง"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add new field"
msgid "Hide indexes"
msgstr "เพิ่มฟิลด์ใหม่"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "แสดงกริด"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ค้นหา"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "คำค้น SQL"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "คำค้น SQL"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "เปิดดู"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "กำลังลบ %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "คำค้น SQL"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "คำค้น SQL"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "ยังไม่ได้เลือกแถว"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "เปลี่ยน"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1676,110 +1703,110 @@ msgstr ""
msgid "Save"
msgstr "บันทึก"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "คำค้น SQL"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "คำค้น SQL"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "ไม่สนใจ"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
msgid "Add columns"
msgstr "เพิ่มฟิลด์ใหม่"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "เลือกฟิลด์ที่ต้องการแสดง"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "สร้างโดย"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "จ."
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1787,30 +1814,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "ไม่มีฐานข้อมูล"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ไม่มี"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "ก่อนหน้า"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1818,96 +1845,96 @@ msgid "Next"
msgstr "ต่อไป"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "รวม"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ข้อมูลไบนารี "
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "มี.ค."
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "เม.ย."
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "พ.ค."
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "มิ.ย."
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ก.ค."
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ส.ค."
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ต.ค."
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1915,78 +1942,78 @@ msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "ธ.ค."
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "อา."
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "จ."
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "อ."
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "ศ."
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1994,100 +2021,100 @@ msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "ส."
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "อา."
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "จ."
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "อ."
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "พ."
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "พฤ."
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "ศ."
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "ส."
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ใช้อยู่"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2343,8 +2370,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2478,7 +2505,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "ตาราง"
@@ -2555,7 +2582,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "เซิร์ฟเวอร์"
@@ -2604,7 +2631,7 @@ msgid "Documentation"
msgstr "เอกสารอ้างอิง"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "คำค้น SQL"
@@ -2642,7 +2669,7 @@ msgid "Create PHP Code"
msgstr "สร้างโค้ด PHP"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "เรียกใหม่"
@@ -2663,7 +2690,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2770,7 +2797,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5343,8 +5370,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5555,7 +5582,7 @@ msgstr "เรียงโดยคีย์"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5628,7 +5655,7 @@ msgid "The row has been deleted"
msgstr "ลบเรียบร้อยแล้ว"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "ฆ่าทิ้ง"
@@ -5644,7 +5671,7 @@ msgstr "แสดงระเบียนที่ "
msgid "total"
msgstr "ทั้งหมด"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "คำค้นใช้เวลา %01.4f วินาที"
@@ -5718,7 +5745,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "สถานะของ InnoDB"
@@ -6063,8 +6090,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6178,28 +6205,28 @@ msgid "Display MIME types"
msgstr "MIME-types ที่มีอยู่"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "โฮสต์"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "เวลาในการสร้าง"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "รุ่นของเซิร์ฟเวอร์"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "รุ่นของ PHP"
@@ -6398,49 +6425,49 @@ msgid "Generated by"
msgstr "สร้างโดย"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "ไม่มีฐานข้อมูล"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "เฉพาะโครงสร้าง"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6893,14 +6920,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "ตัวแปร"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "ค่า"
@@ -7115,7 +7142,7 @@ msgid "Returns"
msgstr "ตัวเลือกตาราง"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "เวลา"
@@ -7598,13 +7625,13 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
#, fuzzy
msgid "Binary log"
msgstr "ข้อมูลไบนารี "
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "ตัวแปร"
@@ -7662,11 +7689,11 @@ msgstr "ปฏิทิน"
msgid "Columns"
msgstr "ชื่อคอลัมน์"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "จดคำค้นนี้ไว้"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -8050,7 +8077,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "ผู้ใช้"
@@ -8506,18 +8533,18 @@ msgstr "ไม่มีตาราง \"%s\"!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "จำนวนฟิลด์"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "ตัดทอนคำค้นที่แสดง"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "แสดงคำค้นแบบเต็ม"
@@ -8909,8 +8936,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -9035,7 +9062,7 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9174,136 +9201,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
#, fuzzy
msgid "Query cache"
msgstr "ชนิดคำค้น"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
#, fuzzy
msgid "Delayed inserts"
msgstr "แทรกหลายระเบียนในคราวเดียว"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
#, fuzzy
msgid "Show open tables"
msgstr "แสดงตาราง"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "ข้อมูลรันไทม์"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "เรียกใหม่"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
msgid "Show only alert values"
msgstr "แสดงตาราง"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
msgid "Show unformatted values"
msgstr "แสดงตาราง"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "รีเลชัน"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "ชนิดคำค้น"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "ฟังก์ชั่น"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9318,130 +9345,130 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "ต่อชั่วโมง"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "ต่อนาที"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "ต่อวินาที"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "คำสั่ง"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "ได้รับ"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "ถูกส่ง"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "ความพยายามล้มเหลว"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "ยกเลิก"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "คำสั่ง"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9449,78 +9476,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9528,7 +9555,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9536,42 +9563,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9579,33 +9606,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9614,227 +9641,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9842,99 +9869,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9942,18 +9969,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9961,64 +9988,64 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "ส."
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "เพิ่มฟิลด์ใหม่"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "เรียกใหม่"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10027,7 +10054,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10035,7 +10062,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10047,7 +10074,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "ชนิดคำค้น"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10155,7 +10172,7 @@ msgid_plural "%d seconds"
msgstr[0] "ต่อวินาที"
msgstr[1] "ต่อวินาที"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10570,36 +10587,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "ตรวจสอบ SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "ป้ายชื่อ"
@@ -11392,8 +11409,8 @@ msgid "Current amount of Questions: %s"
msgstr "การเชื่อมต่อ"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "แสดงคำค้นแบบเต็ม"
#: po/advisory_rules.php:16
@@ -11414,7 +11431,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "คำค้น SQL"
#: po/advisory_rules.php:21
@@ -11592,12 +11609,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "เนื้อที่ที่ใช้"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11653,8 +11664,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11759,9 +11770,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "อนุญาตให้สร้างตารางชั่วคราว."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11779,13 +11790,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "อนุญาตให้สร้างตารางชั่วคราว."
#: po/advisory_rules.php:113
#, php-format
@@ -11817,8 +11830,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "Rate of joins without indexes"
+msgstr "ตารางที่ถูกติดตาม"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11838,7 +11853,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11861,7 +11876,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11870,7 +11885,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11883,7 +11898,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11892,8 +11907,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11924,11 +11939,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s ตาราง"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11955,8 +11967,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s ตาราง"
#: po/advisory_rules.php:152
msgid ""
@@ -11995,7 +12010,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -12016,7 +12031,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -12025,7 +12040,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12044,7 +12059,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "เริ่มหน้าใหม่"
#: po/advisory_rules.php:176
@@ -12063,9 +12078,9 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-msgid "% open files"
-msgstr "แสดงตาราง"
+#, fuzzy
+msgid "Percentage of used open files limit"
+msgstr "ชุดอักขระของไฟล์ (character set):"
#: po/advisory_rules.php:181
msgid ""
@@ -12087,7 +12102,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "ชุดอักขระของไฟล์ (character set):"
#: po/advisory_rules.php:186
@@ -12129,7 +12144,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-msgid "thread cache"
+msgid "Thread cache"
msgstr "ชนิดคำค้น"
#: po/advisory_rules.php:201
@@ -12147,8 +12162,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "หยุดการติดตามแล้ว"
#: po/advisory_rules.php:206
#, fuzzy
@@ -12204,9 +12221,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "การเชื่อมต่อ"
#: po/advisory_rules.php:221
@@ -12231,7 +12248,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "การเชื่อมต่อ"
#: po/advisory_rules.php:226
@@ -12254,7 +12271,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "การเชื่อมต่อ"
#: po/advisory_rules.php:231
@@ -12268,8 +12285,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "สารบัญ"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12290,7 +12309,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "สารบัญ"
#: po/advisory_rules.php:243
@@ -12315,7 +12334,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12422,6 +12441,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "เนื้อที่ที่ใช้"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "แสดงตาราง"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "การเชื่อมต่อ"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "การเชื่อมต่อ"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "ใช้งาน"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "ใช้งาน"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -12556,8 +12599,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
-#~ "s"
+#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
+#~ "%s"
#~ msgid "No tables"
#~ msgstr "ไม่มีตาราง"
diff --git a/po/tr.po b/po/tr.po
index f3459fd189..32fd16c578 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
-"PO-Revision-Date: 2011-08-10 21:18+0200\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
+"PO-Revision-Date: 2011-08-11 22:58+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish
\n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Tümünü göster"
@@ -47,7 +47,7 @@ msgstr "Ara"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Anahtar adı"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Açıklama"
@@ -201,7 +201,7 @@ msgstr "Bağlantı verilen"
msgid "Comments"
msgstr "Yorumlar"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Yorumlar"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Hayır"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Hayır"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -356,7 +356,7 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -609,8 +609,8 @@ msgstr "İzleme aktif değil."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
@@ -621,7 +621,7 @@ msgstr "Görünüm"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Kopya Etme"
@@ -663,7 +663,7 @@ msgstr "Ek yükü olan tabloları kontrol et"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Dışa Aktar"
@@ -725,10 +725,10 @@ msgstr "İzlenen tablolar"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -748,7 +748,7 @@ msgstr "Güncellendi"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Durum"
@@ -847,8 +847,8 @@ msgstr "Döküm, %s dosyasına kaydedildi."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
"bulmak için %sbelgeden%s yararlanın."
@@ -891,7 +891,7 @@ msgstr "İşaretleme silindi."
msgid "Showing bookmark"
msgstr "Gösterilen işaret"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "İşaretleme %s oluşturuldu"
@@ -944,15 +944,15 @@ msgstr "Seçmek için tıklayın"
msgid "Click to unselect"
msgstr "Seçimi kaldırmak için tıklayın"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Şu komut uygulansın "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
@@ -1029,12 +1029,12 @@ msgstr "Yetkiler Yeniden Yükleniyor"
msgid "Removing Selected Users"
msgstr "Seçili Kullanıcılar Kaldırılıyor"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Kapat"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1042,15 +1042,15 @@ msgstr "Kapat"
msgid "Edit"
msgstr "Düzenle"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "Canlı trafik çizelgesi"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "Canlı bağ./işlem çizelgesi"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "Canlı sorgu çizelgesi"
@@ -1061,13 +1061,13 @@ msgstr "Sabit veri"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Toplam"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Diğer"
@@ -1097,7 +1097,7 @@ msgstr "Sunucu trafiği (KiB olarak)"
msgid "Connections since last refresh"
msgstr "Son yenilemeden bu yana bağlantılar"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "İşlemler"
@@ -1115,154 +1115,186 @@ msgstr "Son yenilemeden bu yana sorular"
msgid "Questions (executed statements by the server)"
msgstr "Sorular (sunucu tarafından çalıştırılan ifadeler)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Sorgu istatistikleri"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Yapılandırma dosyasını okuma başarısız"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache disabled"
+msgid "Query cache efficiency"
+msgstr "Sorgu önbelleği etkisizleştirildi"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query Cache usage"
+msgid "Query cache usage"
+msgstr "Sorgu Önbelleği kullanımı"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query Cache usage"
+msgid "Query cache used"
+msgstr "Sorgu Önbelleği kullanımı"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "Sistem İşlemcisi Kullanımı"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "Sistem belleği"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "Sistem takası"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "Ortalama yükleme"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "Toplam bellek"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "Önbelleklenen bellek"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "Arabelleklenen bellek"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "Boş bellek"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "Kullanılan bellek"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "Toplam Takas"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "Önbelleklenen Takas"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "Kullanılan Takas"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "Serbest Takas"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "Gönderilmiş bayt"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "Alınmış bayt"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Bağlantılar"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "Sorular"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "Ayarlar"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "Çizelgeyi kaldır"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "Etiketleri ve başlığı düzenle"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "Çizelgeyi ızgaraya ekle"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "Lütfen diziye en az bir değişken ekleyin"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Yok"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "İzlemeye devam et"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "İzlemeyi duraklat"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log ve slow_query_log etkin."
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log etkinleştirildi."
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log etkinleştirildi."
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log ve general_log etkisiz."
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output, TABLE olarak ayarlı değil."
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output, TABLE olarak ayarlı."
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1270,15 +1302,15 @@ msgid ""
"depending on your system."
msgstr ""
"slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun "
-"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-"
-"2 saniyeye ayarlanması tavsiye edilir."
+"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak "
+"0-2 saniyeye ayarlanması tavsiye edilir."
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr "long_query_time %d saniyeye ayarlı."
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
@@ -1287,30 +1319,30 @@ msgstr ""
"varsayılana sıfırlanacak:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "%s etkin"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "%s etkisiz"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "long_query_time'ı %ds ayarla"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
@@ -1318,41 +1350,41 @@ 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:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "Ayarları değiştir"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "Şu anki ayarlar"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "Çizelge Başlığı"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr "Ayırdedici"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "Böleni %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "Yavaş günlükten"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "Genel günlükten"
-#: js/messages.php:157
+#: js/messages.php:164
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:158
+#: js/messages.php:165
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 "
@@ -1362,7 +1394,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:159
+#: js/messages.php:166
msgid ""
"Since grouping of INSERTs queries has been selected, INSERT queries into the "
"same table are also being grouped together, disregarding of the inserted "
@@ -1372,53 +1404,53 @@ msgstr ""
"INSERT sorguları, eklenen verinin hiçe sayılması, aynı zamanda birlikte "
"gruplanır."
-#: js/messages.php:160
+#: js/messages.php:167
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:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "Günlük tablosuna atla"
-#: js/messages.php:163
+#: js/messages.php:170
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."
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "Süzgeçler"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Süzgeç"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "Kelime/düzenli ifadeye göre sorguları süz:"
-#: js/messages.php:170
+#: js/messages.php:177
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:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "Gruplanmış satırların toplamı:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "Toplam:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "Günlükler yükleniyor"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "İzleyici yenileme başarısız oldu"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
@@ -1428,21 +1460,21 @@ msgstr ""
"ihtimalle oturumunuzun süresi dolduğundandır. Sayfanın yeniden yüklenmesi ve "
"tanıtımlarınızın yeniden girilmesi yardımcı olmalıdır."
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "Sayfayı yeniden yükle"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr "Etkilenen satırlar:"
-#: js/messages.php:181
+#: js/messages.php:188
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:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
@@ -1450,183 +1482,173 @@ msgstr ""
"İçe aktarılan yapılandırma ile çizelge çizgilerinin oluşturulması başarısız. "
"Varsayılan yapılandırmaya sıfırlanıyor..."
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "İçe Aktar"
-#: js/messages.php:185
-#, fuzzy
-#| msgid "Update Query"
-msgid "Analyse Query"
-msgstr "Sorguyu Güncelle"
-
-#: js/messages.php:189
-#, fuzzy
-#| msgid "Advisor"
-msgid "Advisor system"
-msgstr "Danışman"
-
-#: js/messages.php:190
-msgid "Possible performance issues"
-msgstr ""
-
-#: js/messages.php:191
-msgid "Issue"
-msgstr ""
-
#: js/messages.php:192
-#, fuzzy
-#| msgid "Documentation"
-msgid "Recommendation"
-msgstr "Belgeler"
-
-#: js/messages.php:193
-#, fuzzy
-#| msgid "Details"
-msgid "Rule details"
-msgstr "Ayrıntılar"
-
-#: js/messages.php:194
-#, fuzzy
-#| msgid "Authentication"
-msgid "Justification"
-msgstr "Kimlik doğrulama"
-
-#: js/messages.php:195
-msgid "Used variable / formula"
-msgstr ""
+msgid "Analyse Query"
+msgstr "Sorguyu Çözümle"
#: js/messages.php:196
-msgid "Test"
-msgstr ""
+msgid "Advisor system"
+msgstr "Danışman sistemi"
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:197
+msgid "Possible performance issues"
+msgstr "Olası performans sorunları"
+
+#: js/messages.php:198
+msgid "Issue"
+msgstr "Sorun"
+
+#: js/messages.php:199
+msgid "Recommendation"
+msgstr "Tavsiye"
+
+#: js/messages.php:200
+msgid "Rule details"
+msgstr "Kural ayrıntıları"
+
+#: js/messages.php:201
+msgid "Justification"
+msgstr "Gerekçe"
+
+#: js/messages.php:202
+msgid "Used variable / formula"
+msgstr "Kullanılan değişken / formül"
+
+#: js/messages.php:203
+msgid "Test"
+msgstr "Sınama"
+
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "İptal"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Yükleniyor"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "İstek İşleniyor"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "İstek İşlemede Hata"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "Sütun Kaldırılıyor"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "Birincil Anahtar Ekleniyor"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "TAMAM"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Veritabanı Yeniden Adlandırılıyor"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Veritabanını Yeniden Yükle"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Veritabanı Kopyalanıyor"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Karakter Grubu Değiştiriliyor"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Tablonun en az bir sütunu olmalı"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Tablo Oluştur"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Tablo Ekle"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "İndeksleri gizle"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "İndeksleri göster"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Aranıyor"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Arama sonuçlarını gizle"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Arama sonuçlarını göster"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "Gözatılıyor"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "Siliniyor"
-#: js/messages.php:234
+#: js/messages.php:241
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:237
+#: js/messages.php:244
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:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Sorgu kutusunu gizle"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Sorgu kutusunu göster"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Satır seçilmedi"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Değiştir"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "Sorgu yürütme süresi"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1634,40 +1656,40 @@ msgstr "Sorgu yürütme süresi"
msgid "Save"
msgstr "Kaydet"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Arama kriterini gizle"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Arama kriterini göster"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Yoksay"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "Sütunları ekle"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Kaynak gösterilen anahtarı seç"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Dış Anahtarı seç"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Göstermek için sütun seçin"
-#: js/messages.php:265
+#: js/messages.php:272
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?"
@@ -1675,15 +1697,15 @@ msgstr ""
"Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, "
"kaybolacaklardır. Devam etmek istiyor musunuz?"
-#: js/messages.php:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "Sütun için bir seçenek ekle "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın"
-#: js/messages.php:272
+#: js/messages.php:279
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?"
@@ -1691,24 +1713,24 @@ msgstr ""
"Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu "
"sayfadan ayrılmak istediğinize emin misiniz?"
-#: js/messages.php:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "Yen.düzenleme için sürükle"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "Sıralamak için tıklayın"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "İşaretlemek/işareti kaldırmak için tıklayın"
-#: js/messages.php:276
+#: js/messages.php:283
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:278
+#: js/messages.php:285
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."
@@ -1717,281 +1739,281 @@ msgstr ""
"özellikler, Düzenle, Kopyala ve Sil bağlantıları kaydedildikten sonra "
"çalışmayabilir."
-#: js/messages.php:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Parola üret"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Üret"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Parola Değiştir"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Daha Fazla"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
-"s, %s tarihinde yayınlandı."
+"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
+"%s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", son sağlam sürüm:"
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "güncel"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Bitti"
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr "Önceki"
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr "Sonraki"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Bugün"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Ocak"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Şubat"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Mart"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Nisan"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Mayıs"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Haziran"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Temmuz"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Ağustos"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Eylül"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Ekim"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Kasım"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Aralık"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Oca"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Şub"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Eyl"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Eki"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Ara"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Pazar"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Pazartesi"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Salı"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Çarşamba"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Perşembe"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "Cuma"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Cumartesi"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Sal"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Cum"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Ctesi"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Pz"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Pt"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Ça"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Cu"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Ct"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "Hs"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "Saat"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Dakika"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Saniye"
@@ -2241,8 +2263,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
@@ -2386,7 +2408,7 @@ msgstr "paylaşılmış"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tablolar"
@@ -2467,7 +2489,7 @@ msgstr ""
"geçirin."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Sunucu"
@@ -2516,7 +2538,7 @@ msgid "Documentation"
msgstr "Belgeler"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL sorgusu"
@@ -2554,7 +2576,7 @@ msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Yenile"
@@ -2575,7 +2597,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Sıralı"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profil çıkart"
@@ -2672,7 +2694,7 @@ msgstr "Değiştirmek için tıklayın"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5312,8 +5334,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
@@ -5516,7 +5538,7 @@ msgstr "Anahtara göre sırala"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5580,7 +5602,7 @@ msgid "The row has been deleted"
msgstr "Satır silindi"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Sonlandır"
@@ -5596,7 +5618,7 @@ msgstr "Gösterilen satırlar"
msgid "total"
msgstr "toplam"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Sorgu %01.4f san. sürdü"
@@ -5669,7 +5691,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Arabellek Havuzu"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Durumu"
@@ -6071,8 +6093,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
"bulunabilir."
@@ -6167,28 +6189,28 @@ msgid "Display MIME types"
msgstr "MIME türlerini göster"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Anamakine"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Üretim Zamanı"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Sunucu sürümü"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Sürümü"
@@ -6402,49 +6424,49 @@ msgid "Generated by"
msgstr "Üreten:"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "Adına tıklayarak yapının içeriklerini görün"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını "
"değiştirin"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "Aşağıdaki \"Yapı\" bağlantısıyla yapısını düzenleyin"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Veritabanına git"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr "%s için ayarları düzenle"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Tabloya git"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr "%s yapısı"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Görünüme git"
@@ -6902,14 +6924,14 @@ msgid "Slave status"
msgstr "Slave durumu"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Değişken"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Değer"
@@ -7111,7 +7133,7 @@ msgid "Returns"
msgstr "Dönüşler"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Süre"
@@ -7543,12 +7565,12 @@ msgid "Synchronize"
msgstr "Eşitle"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binari günlüğü"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Değişkenler"
@@ -7601,11 +7623,11 @@ msgstr "Temizle"
msgid "Columns"
msgstr "Sütun"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorgusunu işaretle"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
@@ -8019,7 +8041,7 @@ msgstr "Protokol sürümü"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Kullanıcı"
@@ -8174,10 +8196,8 @@ msgid "No databases"
msgstr "Veritabanı yok"
#: navigation.php:270
-#, fuzzy
-#| msgid "filter tables by name"
msgid "Filter tables by name"
-msgstr "tabloları adına göre süz"
+msgstr "Tabloları adına göre süz"
#: navigation.php:303 navigation.php:304
msgctxt "short form"
@@ -8466,17 +8486,17 @@ 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:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Dosyalar"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Gösterilen Sorguları Kısalt"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Tüm Sorguları Göster"
@@ -8573,7 +8593,7 @@ msgstr "Yeni tabloların oluşturulmasına izin verir."
#: server_privileges.php:38 server_privileges.php:253
#: server_privileges.php:619
msgid "Allows creating temporary tables."
-msgstr "Geçici tablolara oluşturulmasına izin verir."
+msgstr "Geçici tablolar oluşturulmasına izin verir."
#: server_privileges.php:39 server_privileges.php:303
#: server_privileges.php:655
@@ -8869,8 +8889,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
@@ -8997,7 +9017,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Master durumunu göster"
@@ -9147,126 +9167,122 @@ 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:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s işlemi başarılı olarak sonlandırıldı."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Denetimci"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Sorgu önbelleği"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "İşlemler"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Geçici veri"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Gecikmiş eklemeler"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Anahtar önbelleği"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Birleştirmeler"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sıralama"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "İşlem koordinatörü"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Tüm tabloları temizle (kapat)"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Açık tabloları göster"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Slave anamakineleri göster"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Slave durumunu göster"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Sorgu önbelleğini temizle"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Çalışma Süresi Bilgisi"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "Tüm durum değişkenleri"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "İzleme"
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr "Danışman"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "Yenileme oranı: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "İçerdiği kelime:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "Sadece uyarı değerlerini göster"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "Kategoriye göre süz..."
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr "Biçimlendirilmemiş değerleri göster"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "İlgili bağlantılar:"
-#: server_status.php:758
-#, fuzzy
-#| msgid "Query analyzer"
+#: server_status.php:800
msgid "Run analyzer"
-msgstr "Sorgu çözümleyici"
+msgstr "Çözümleyiciyi çalıştır"
-#: server_status.php:759
-#, fuzzy
-#| msgid "Introduction"
+#: server_status.php:801
msgid "Instructions"
-msgstr "Başlangıç"
+msgstr "Talimatlar"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9279,46 +9295,56 @@ msgid ""
"database, and undo the change if there was no clearly measurable improvement."
"
"
msgstr ""
+"Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu "
+"değişkenleri üzerinde tavsiyelerde bulunabilir.
Not alın ancak bu sistem "
+"basit hesaplamalara dayanarak ve sisteminize muhakkak uygulanamayan başlıca "
+"kurallar tarafından tavsiyelerde bulunur.
Yapılandırmanın herhangi "
+"bir değişiminden önce, neyi değiştirdiğinizi (belgeyi okuyarak) "
+"bildiğinizden ve değişikliği nasıl geri alıcağınızdan emin olun. Yanlış "
+"ayarlamalar performans üzerinde çok olumsuz etkiler yapabilir.
"
+"
Sisteminizi ayarlamanın en iyi yolu bir seferde sadece bir ayar "
+"değiştirmek, gözlemlemek veya veritabanınızı kıyaslamak ve eğer açıkça "
+"ölçülebilir bir iyileşme yoksa, değişikliği geri almak.
"
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "Başlangıçtan bu yana sorular: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "saat başına"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "dakika başına"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "saniye başına"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "İfadeler"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "#"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Başlangıçtan bu yana ağ trafiği: %s"
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9326,19 +9352,19 @@ msgstr ""
"Bu MySQL sunucusu kopya etme işlemi sırasında master ve "
"slave olarak çalışır."
-#: server_status.php:911
+#: server_status.php:953
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:913
+#: server_status.php:955
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:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9346,11 +9372,11 @@ 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:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Kopya etme durumu"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9358,35 +9384,35 @@ 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:948
+#: server_status.php:990
msgid "Received"
msgstr "Alınan"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Gönderilen"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "En fazla eşzamanlı bağlantı"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Başarısız deneme"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "İptal edilen"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Komut"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9394,11 +9420,11 @@ msgstr ""
"Bağlantı uygun bir şekilde kapatılmadan sonlanmış istemcinin durdurulmuş "
"bağlantılarının sayısı."
-#: server_status.php:1137
+#: server_status.php:1179
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ı."
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9408,16 +9434,16 @@ msgstr ""
"binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici "
"dosya kullandı."
-#: server_status.php:1139
+#: server_status.php:1181
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ı."
-#: server_status.php:1140
+#: server_status.php:1182
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ı."
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9429,11 +9455,11 @@ msgstr ""
"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına "
"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9441,7 +9467,7 @@ 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:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9449,7 +9475,7 @@ msgstr ""
"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır "
"sayısı (muhtemelen kopya anahtar)."
-#: server_status.php:1145
+#: server_status.php:1187
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9457,23 +9483,23 @@ 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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED satır yazımı sayısıdır."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Dahili COMMIT ifadesi sayısıdır."
-#: server_status.php:1149
+#: server_status.php:1191
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:1150
+#: server_status.php:1192
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 "
@@ -9483,7 +9509,7 @@ msgstr ""
"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez "
"keşfedildiğini gösterir."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9493,7 +9519,7 @@ msgstr ""
"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:1152
+#: server_status.php:1194
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."
@@ -9502,7 +9528,7 @@ msgstr ""
"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi "
"olduğu belirtisidir."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -9512,7 +9538,7 @@ msgstr ""
"aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması "
"yapıyorsanız, bu arttırılan miktardır."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9520,7 +9546,7 @@ 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:1155
+#: server_status.php:1197
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 "
@@ -9533,7 +9559,7 @@ msgstr ""
"fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları "
"kullanmamaktasınız."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9545,35 +9571,35 @@ msgstr ""
"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:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "Dahili ROLLBACK ifadesi sayısıdır."
-#: server_status.php:1158
+#: server_status.php:1200
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:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
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:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "Şu anki dolu sayfa sayısıdır."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Boş sayfa sayısıdır."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9583,7 +9609,7 @@ msgstr ""
"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya "
"taşınamayan sayfalardır."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9595,11 +9621,11 @@ msgstr ""
"zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9607,7 +9633,7 @@ 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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9615,11 +9641,11 @@ 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:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9627,7 +9653,7 @@ 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:1171
+#: server_status.php:1213
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 "
@@ -9641,55 +9667,55 @@ msgstr ""
"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:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Şimdiye kadarki fsync() işlem sayısıdır."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Şu anki bekleyen fsync() işlem sayısıdır."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Şu anki bekleyen okuma sayısıdır."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Şu anki bekleyen yazma sayısıdır."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Toplam veri okuma sayısıdır."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Toplam veri yazma sayısıdır."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır."
-#: server_status.php:1181
+#: server_status.php:1223
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:1182
+#: server_status.php:1224
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:1183
+#: server_status.php:1225
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."
@@ -9697,35 +9723,35 @@ 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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Günlük yazma isteği sayısıdır."
-#: server_status.php:1185
+#: server_status.php:1227
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:1186
+#: server_status.php:1228
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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Bekleyen günlük dosyası yazma sayısıdır."
-#: server_status.php:1189
+#: server_status.php:1231
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:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Oluşturulmuş sayfa sayısıdır."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9733,52 +9759,52 @@ 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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Okunan sayfa sayısıdır."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Yazılmış sayfa sayısıdır."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Şu anki beklenen satır kilidi sayısıdır."
-#: server_status.php:1195
+#: server_status.php:1237
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:1196
+#: server_status.php:1238
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:1197
+#: server_status.php:1239
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:1198
+#: server_status.php:1240
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:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB tablolarından silinen satır sayısıdır."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB tablolarına eklenen satır sayısıdır."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB tablolarından okunan satır sayısıdır."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB tablolarında güncellenen satır sayısıdır."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -9786,7 +9812,7 @@ 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:1204
+#: server_status.php:1246
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."
@@ -9795,7 +9821,7 @@ msgstr ""
"önbelleğinin ne kadarının kullanımda olmasını belirlemek için "
"kullanabilirsiniz."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -9804,11 +9830,11 @@ 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:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -9818,15 +9844,15 @@ msgstr ""
"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:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
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:1210
+#: server_status.php:1252
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 "
@@ -9837,7 +9863,7 @@ msgstr ""
"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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -9845,11 +9871,11 @@ msgstr ""
"Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla "
"bağlantı sayısı."
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9857,19 +9883,19 @@ 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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Açık olan dosya sayısıdır."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Açık olan tablo sayısıdır."
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9879,19 +9905,19 @@ msgstr ""
"QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret "
"edebilir."
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Sorgu önbelleği için boş bellek miktarıdır."
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Önbelleğe ulaşma sayısıdır."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Önbelleğe eklenen sorgu sayısıdır."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9903,7 +9929,7 @@ msgstr ""
"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:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9911,19 +9937,19 @@ msgstr ""
"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type "
"ayarından dolayı önbelleklenmedi)."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Önbellekte kayıtlı sorgu sayısıdır."
-#: server_status.php:1224
+#: server_status.php:1266
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:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9931,11 +9957,11 @@ 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:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -9944,7 +9970,7 @@ msgstr ""
"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:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9952,15 +9978,15 @@ 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:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9968,11 +9994,11 @@ 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:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9980,12 +10006,12 @@ msgstr ""
"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem "
"sayısıdır."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -9995,23 +10021,23 @@ msgstr ""
"değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı "
"dikkate almalısınız."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Aralıklarla yapılmış sıralama sayısıdır."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Sıralanmış satır sayısıdır."
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10023,7 +10049,7 @@ msgstr ""
"uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya "
"etmeyi kullanın."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10033,11 +10059,11 @@ msgstr ""
"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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Şu anki açık bağlantı sayısıdır."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10049,43 +10075,43 @@ msgstr ""
"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer "
"bir performans artışı vermez.)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Hala faaliyette olan işlemler sayısıdır."
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "İzlemeyi başlat"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "Yönergeler/Ayarlama"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "Çizelge ekle"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "Çizelgeleri düzenle/yeniden düzelt"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "Oranı yenile"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "Çizelge sütunları"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr "Çizelge ayarlaması"
-#: server_status.php:1431
+#: server_status.php:1473
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."
@@ -10093,15 +10119,15 @@ msgstr ""
"Çizelgelerin ayarlanması tarayıcının yerel deposunda depolanır. Eğer karışık "
"ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz."
-#: server_status.php:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr "Varsayılana sıfırla"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "İzleme Yönergeleri"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10115,7 +10141,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:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10127,7 +10153,7 @@ msgstr ""
"günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala "
"sunucu çizelgeleme özelliklerini kullanabilirsiniz."
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10149,7 +10175,7 @@ msgstr ""
"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT "
"ifadesine tıklayabilirsiniz."
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10163,75 +10189,69 @@ msgstr ""
"seçmek ve general_log'u etkisizleştirmek tavsiye edilir ve tablolarını bir "
"defa boşaltmak daha fazla izlemeyi gerektirmez."
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "İşlemci Kullanımı"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "Çizelgeyi kaldır"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "Bellek Kullanımı"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "Takas Kullanımı"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "Durum değişkeni(leri)"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "Dizi seç:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "Genellikle izlenen"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "veya değişken adını yazın:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "Ayırtedici değer olarak görüntüle"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "Böleni uygula"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "Veri değerlerine birimi ekle"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "Bu diziyi ekle"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "Diziyi temizle"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "Çizelgedeki Dizi:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "Günlük istatistikleri"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "Seçili zaman aralığı:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir"
-#: server_status.php:1546
+#: server_status.php:1583
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:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
@@ -10239,17 +10259,17 @@ msgstr ""
"
Sonuçlar sorgu "
"metnine göre gruplandırılır."
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "Sorgu çözümleyici"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d saniye"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10646,9 +10666,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %"
-"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. "
-"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
+"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- "
+"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
+"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
#: setup/lib/index.lib.php:292
@@ -10663,8 +10683,8 @@ msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
-"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
-"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
+"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
+"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
#: setup/lib/index.lib.php:294
@@ -10707,34 +10727,34 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir."
msgid "Browse foreign values"
msgstr "Dış değerlere gözat"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor."
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Eklenen satır id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP kodu olarak gösteriliyor"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL sorgusu gösteriliyor"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "Oanylı SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Etiket"
@@ -11437,11 +11457,11 @@ msgstr "Görünümü yeniden şuna adlandır"
#: po/advisory_rules.php:5
msgid "Uptime below one day"
-msgstr ""
+msgstr "Bir günün altındaki çalışma zamanı"
#: po/advisory_rules.php:6
msgid "Uptime is less than 1 day, performance tuning may not be accurate."
-msgstr ""
+msgstr "Çalışma zamanı 1 günden az, performans ayarlaması kesin olmayabilir."
#: po/advisory_rules.php:7
msgid ""
@@ -11455,10 +11475,8 @@ msgid "The uptime is only %s"
msgstr ""
#: po/advisory_rules.php:10
-#, fuzzy
-#| msgid "Questions"
msgid "Questions below 1,000"
-msgstr "Sorular"
+msgstr "1,000'in altındaki sorular"
#: po/advisory_rules.php:11
msgid ""
@@ -11473,16 +11491,15 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:13
-#, fuzzy, php-format
-#| msgid "Current connection"
+#, php-format
msgid "Current amount of Questions: %s"
-msgstr "Şu anki bağlantı"
+msgstr "Şu anki Soru miktarı: %s"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-#| msgid "Show SQL queries"
-msgid "% slow queries"
-msgstr "SQL sorgularını göster"
+#, fuzzy
+#| msgid "% slow queries"
+msgid "Percentage of slow queries"
+msgstr "% yavaş sorgular"
#: po/advisory_rules.php:16
msgid ""
@@ -11502,9 +11519,9 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
-#| msgid "Flush query cache"
-msgid "slow query rate"
-msgstr "Sorgu önbelleğini temizle"
+#| msgid "slow query rate"
+msgid "Slow query rate"
+msgstr "yavaş sorgu oranı"
#: po/advisory_rules.php:21
msgid ""
@@ -11519,10 +11536,8 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:25
-#, fuzzy
-#| msgid "SQL queries"
msgid "Long query time"
-msgstr "SQL sorguları"
+msgstr "Uzun sorgu süresi"
#: po/advisory_rules.php:26
msgid ""
@@ -11537,22 +11552,17 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:28
-#, fuzzy, php-format
-#| msgid "long_query_time is set to %d second(s)."
+#, php-format
msgid "long_query_time is currently set to %ds."
-msgstr "long_query_time %d saniyeye ayarlı."
+msgstr "long_query_time şimdilik %ds'ye ayarlı."
#: po/advisory_rules.php:30
-#, fuzzy
-#| msgid "Show query box"
msgid "Slow query logging"
-msgstr "Sorgu kutusunu göster"
+msgstr "Yavaş sorgu günlükleme"
#: po/advisory_rules.php:31
-#, fuzzy
-#| msgid "slow_query_log is enabled."
msgid "The slow query log is disabled."
-msgstr "slow_query_log etkinleştirildi."
+msgstr "Yavaş sorgu günlüğü etkisizleştirildi."
#: po/advisory_rules.php:32
msgid ""
@@ -11565,10 +11575,8 @@ msgid "log_slow_queries is set to 'OFF'"
msgstr ""
#: po/advisory_rules.php:35
-#, fuzzy
-#| msgid "Clear series"
msgid "Release Series"
-msgstr "Diziyi temizle"
+msgstr "Diziyi Yayımla"
#: po/advisory_rules.php:36
msgid "The MySQL server version less then 5.1."
@@ -11581,16 +11589,13 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
-#, fuzzy, php-format
-#| msgid "Create version"
+#, php-format
msgid "Current version: %s"
-msgstr "Sürüm oluştur"
+msgstr "Şu anki sürüm: %s"
#: po/advisory_rules.php:40 po/advisory_rules.php:45
-#, fuzzy
-#| msgid "Version"
msgid "Minor Version"
-msgstr "Sürüm"
+msgstr "İkincil Sürüm"
#: po/advisory_rules.php:41
msgid "Version less than 5.1.30 (the first GA release of 5.1)."
@@ -11607,16 +11612,12 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)."
msgstr ""
#: po/advisory_rules.php:47
-#, 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 veya sonrasına yükseltmelisiniz."
+msgstr "MySQL 5.5'in sağlam sürümüne yükseltmelisiniz"
#: po/advisory_rules.php:50 po/advisory_rules.php:55
-#, fuzzy
-#| msgid "Description"
msgid "Distribution"
-msgstr "Açıklama"
+msgstr "Dağıtım"
#: po/advisory_rules.php:51
msgid "Version is compiled from source, not a MySQL official binary."
@@ -11646,10 +11647,8 @@ msgid "'percona' found in version_comment"
msgstr ""
#: po/advisory_rules.php:60
-#, fuzzy
-#| msgid "MySQL charset"
msgid "MySQL Architecture"
-msgstr "MySQL karakter grubu"
+msgstr "MySQL Yapısı"
#: po/advisory_rules.php:61
msgid "MySQL is not compiled as a 64-bit package."
@@ -11668,16 +11667,12 @@ msgid "Available memory on this host: %s"
msgstr ""
#: po/advisory_rules.php:65
-#, fuzzy
-#| msgid "Query cache"
msgid "Query cache disabled"
-msgstr "Sorgu önbelleği"
+msgstr "Sorgu önbelleği etkisizleştirildi"
#: po/advisory_rules.php:66
-#, fuzzy
-#| msgid "The server is not responding"
msgid "The query cache is not enabled."
-msgstr "Sunucu yanıt vermiyor"
+msgstr "Sorgu önbelleği etkinleştirilmedi."
#: po/advisory_rules.php:67
msgid ""
@@ -11691,12 +11686,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Alan kullanımı"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11734,10 +11723,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr ""
#: po/advisory_rules.php:80
-#, fuzzy
-#| msgid "Query cache"
msgid "Query Cache usage"
-msgstr "Sorgu önbelleği"
+msgstr "Sorgu Önbelleği kullanımı"
#: po/advisory_rules.php:81
#, php-format
@@ -11753,15 +11740,13 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
-#, fuzzy
-#| msgid "Query cache"
msgid "Query cache fragmentation"
-msgstr "Sorgu önbelleği"
+msgstr "Sorgu önbelleği parçalama"
#: po/advisory_rules.php:86
msgid "The query cache is considerably fragmented."
@@ -11792,12 +11777,12 @@ msgid "Query cache low memory prunes"
msgstr ""
#: po/advisory_rules.php:91
-#, fuzzy
-#| msgid "The amount of free memory for query cache."
msgid ""
"Cached queries are removed due to low query cache memory from the query "
"cache."
-msgstr "Sorgu önbelleği için boş bellek miktarıdır."
+msgstr ""
+"Önbelleklenen sorgular, sorgu önbellek belleğinin sorgu önbelleğinden düşük "
+"olmasından dolayı kaldırıldı."
#: po/advisory_rules.php:92
msgid ""
@@ -11813,10 +11798,8 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:95
-#, fuzzy
-#| msgid "Query cache"
msgid "Query cache max size"
-msgstr "Sorgu önbelleği"
+msgstr "Sorgu önbelleği en fazla boyutu"
#: po/advisory_rules.php:96
msgid ""
@@ -11836,10 +11819,8 @@ msgid "Current query cache size: %s"
msgstr ""
#: po/advisory_rules.php:100
-#, fuzzy
-#| msgid "Query results"
msgid "Query cache min result size"
-msgstr "Sorgu sonuçları"
+msgstr "Sorgu önbelleği en az sonuç boyutu"
#: po/advisory_rules.php:101
msgid ""
@@ -11863,16 +11844,14 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
-#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
-msgstr "Geçici tablolara oluşturulmasına izin verir."
+#, fuzzy
+#| msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
+msgstr "%, geçici tablolara sebep olanı sıralar"
#: po/advisory_rules.php:106 po/advisory_rules.php:111
-#, fuzzy
-#| msgid "Allows creating temporary tables."
msgid "Too many sorts are causing temporary tables."
-msgstr "Geçici tablolara oluşturulmasına izin verir."
+msgstr "Çok fazla sıralama geçici tablolara sebep olur."
#: po/advisory_rules.php:107 po/advisory_rules.php:112
msgid ""
@@ -11883,13 +11862,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "% sorts that cause temporary tales"
+msgid "Rate of sorts that cause temporary tables"
+msgstr "%, geçici tablolara sebep olanı sıralar"
#: po/advisory_rules.php:113
#, php-format
@@ -11898,10 +11879,8 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:115
-#, fuzzy
-#| msgid "Start row"
msgid "Sort rows"
-msgstr "Başlangıç satırı"
+msgstr "Satırları sırala"
#: po/advisory_rules.php:116
msgid "There are lots of rows being sorted."
@@ -11921,14 +11900,14 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are too many joins without indexes."
+msgid "Rate of joins without indexes"
+msgstr "İndeksler olmadan çok fazla katılım var."
#: po/advisory_rules.php:121
-#, fuzzy
-#| msgid "There are no routines to display."
msgid "There are too many joins without indexes."
-msgstr "Görüntülemek için yordamlar yok."
+msgstr "İndeksler olmadan çok fazla katılım var."
#: po/advisory_rules.php:122
msgid ""
@@ -11942,7 +11921,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11965,7 +11944,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11974,7 +11953,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11987,19 +11966,19 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "The rate of reading the next table row is high."
+msgid "Rate of reading next table row"
+msgstr "Sonraki tablo satırını okuma oranı yüksek."
#: po/advisory_rules.php:136
-#, fuzzy
-#| msgid "Where to show the table row links"
msgid "The rate of reading the next table row is high."
-msgstr "Tablo satır bağlantılarının nerede gösterileceği"
+msgstr "Sonraki tablo satırını okuma oranı yüksek."
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12031,10 +12010,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s tablo"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "Tablo satır bağlantılarının nerede gösterileceği"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12061,8 +12039,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "% temp disk tables"
+msgid "Temp disk rate"
+msgstr "% geçici disk tabloları"
#: po/advisory_rules.php:152
msgid ""
@@ -12083,10 +12063,8 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:155
-#, fuzzy
-#| msgid "Sort buffer size"
msgid "MyISAM key buffer size"
-msgstr "Arabellek boyutunu sırala"
+msgstr "MyISAM anahtar arabellek boyutu"
#: po/advisory_rules.php:156
msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
@@ -12103,8 +12081,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "MyISAM key buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "MyISAM anahtar arabellek boyutu"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12124,8 +12104,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "MyISAM key buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "MyISAM anahtar arabellek boyutu"
#: po/advisory_rules.php:168
#, php-format
@@ -12133,7 +12115,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12152,15 +12134,13 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-#| msgid "Create table"
-msgid "rate of table open"
-msgstr "Tablo oluştur"
+#| msgid "rate of table open"
+msgid "Rate of table open"
+msgstr "açık tablo oranı"
#: po/advisory_rules.php:176
-#, fuzzy
-#| msgid "The current number of pending writes."
msgid "The rate of opening tables is high."
-msgstr "Şu anki bekleyen yazma sayısıdır."
+msgstr "Açılan tabloların oranı yüksek."
#: po/advisory_rules.php:177
msgid ""
@@ -12174,10 +12154,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Açık tabloları göster"
+#, fuzzy
+#| msgid "rate of open files"
+msgid "Percentage of used open files limit"
+msgstr "açık dosyaların oranı"
#: po/advisory_rules.php:181
msgid ""
@@ -12199,15 +12179,13 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
-#| msgid "Format of imported file"
-msgid "rate of open files"
-msgstr "İçe aktarılmış dosyanın biçimi"
+#| msgid "rate of open files"
+msgid "Rate of open files"
+msgstr "açık dosyaların oranı"
#: po/advisory_rules.php:186
-#, fuzzy
-#| msgid "The number of pending log file fsyncs."
msgid "The rate of opening files is high."
-msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
+msgstr "Açılan dosyaların oranı yüksek."
#: po/advisory_rules.php:188
#, php-format
@@ -12215,16 +12193,12 @@ msgid "Opened files rate: %s, this value should be less than 5 per hour"
msgstr ""
#: po/advisory_rules.php:190
-#, fuzzy
-#| msgid "Create table on database %s"
msgid "Immediate table locks %"
-msgstr "%s veritabanında yeni tablo oluştur"
+msgstr "Acil tablo kilitleri %"
#: po/advisory_rules.php:191 po/advisory_rules.php:196
-#, fuzzy
-#| msgid "The number of times that a table lock was acquired immediately."
msgid "Too many table locks were not granted immediately."
-msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır."
+msgstr "Çok fazla tablo kilidi acilen onaylanmadı."
#: po/advisory_rules.php:192 po/advisory_rules.php:197
msgid "Optimize queries and/or use InnoDB to reduce lock wait."
@@ -12246,9 +12220,9 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
-#| msgid "Key cache"
-msgid "thread cache"
-msgstr "Anahtar önbelleği"
+#| msgid "thread cache"
+msgid "Thread cache"
+msgstr "işlem önbelleği"
#: po/advisory_rules.php:201
msgid ""
@@ -12265,14 +12239,14 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Thread cache is not efficient."
+msgid "Thread cache hit rate %"
+msgstr "İşlem önbelleği etkin değil."
#: po/advisory_rules.php:206
-#, fuzzy
-#| msgid "Tracking is not active."
msgid "Thread cache is not efficient."
-msgstr "İzleme aktif değil."
+msgstr "İşlem önbelleği etkin değil."
#: po/advisory_rules.php:207
msgid "Increase {thread_cache_size}."
@@ -12288,10 +12262,8 @@ msgid "Threads that are slow to launch"
msgstr ""
#: po/advisory_rules.php:211
-#, fuzzy
-#| msgid "The number of threads that are not sleeping."
msgid "There are too many threads that are slow to launch."
-msgstr "Hala faaliyette olan işlemler sayısıdır."
+msgstr "Çalıştırmak için yavaş olan çok fazla işlem var."
#: po/advisory_rules.php:212
msgid ""
@@ -12319,16 +12291,15 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:218
-#, fuzzy, php-format
-#| msgid "long_query_time is set to %d second(s)."
+#, php-format
msgid "slow_launch_time is set to %s"
-msgstr "long_query_time %d saniyeye ayarlı."
+msgstr "slow_launch_time %s'e ayarlı"
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Bağlantılar"
+#, fuzzy
+#| msgid "rate of aborted connections"
+msgid "Percentage of used connections"
+msgstr "durdurulan bağlantıların oranı"
#: po/advisory_rules.php:221
msgid ""
@@ -12351,9 +12322,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Bağlantıyı sıkıştır"
+#| msgid "rate of aborted connections"
+msgid "Percentage of aborted connections"
+msgstr "durdurulan bağlantıların oranı"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12374,13 +12345,13 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
-#| msgid "Persistent connections"
-msgid "rate of aborted connections"
-msgstr "Sürekli bağlantılar"
+#| msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
+msgstr "durdurulan bağlantıların oranı"
#: po/advisory_rules.php:231
msgid "Too many connections are aborted"
-msgstr ""
+msgstr "Çok fazla bağlantı durduruldu"
#: po/advisory_rules.php:233
#, php-format
@@ -12389,8 +12360,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "rate of aborted clients"
+msgid "Percentage of aborted clients"
+msgstr "durdurulan istemcilerin oranı"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12410,9 +12383,9 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
-#| msgid "Format of imported file"
-msgid "rate of aborted clients"
-msgstr "İçe aktarılmış dosyanın biçimi"
+#| msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
+msgstr "durdurulan istemcilerin oranı"
#: po/advisory_rules.php:243
#, php-format
@@ -12424,10 +12397,8 @@ msgid "Is InnoDB disabled?"
msgstr ""
#: po/advisory_rules.php:246
-#, fuzzy
-#| msgid "Could not save recent table"
msgid "You do not have InnoDB enabled."
-msgstr "Son tablo kaydedilemedi"
+msgstr "Etkinleştirilmiş InnoDB'ye sahip değilsiniz."
#: po/advisory_rules.php:247
msgid "InnoDB is usually the better choice for table engines."
@@ -12438,16 +12409,18 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "InnoDB buffer pool size"
+msgid "InnoDB log size"
+msgstr "InnoDB arabellek havuzu boyutu"
#: po/advisory_rules.php:251
-#, fuzzy
-#| msgid "The number writes done to the InnoDB buffer pool."
msgid ""
"The InnoDB log file size is not an appropriate size, in relation to the "
"InnoDB buffer pool."
-msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır."
+msgstr ""
+"InnoDB arabellek havuzu ile ilgili olarak InnoDB günlük dosyası boyutu uygun "
+"bir boyut değil."
#: po/advisory_rules.php:252
#, php-format
@@ -12498,10 +12471,8 @@ msgid "Your absolute InnoD log size is %s MiB"
msgstr ""
#: po/advisory_rules.php:260
-#, fuzzy
-#| msgid "Buffer pool size"
msgid "InnoDB buffer pool size"
-msgstr "Arabellek havuzu boyutu"
+msgstr "InnoDB arabellek havuzu boyutu"
#: po/advisory_rules.php:261
msgid "Your InnoDB buffer pool is fairly small."
@@ -12531,10 +12502,8 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:265
-#, fuzzy
-#| msgid "max. concurrent connections"
msgid "MyISAM concurrent inserts"
-msgstr "En fazla eşzamanlı bağlantı"
+msgstr "MyISAM eşzamanlı eklemeler"
#: po/advisory_rules.php:266
msgid "Enable concurrent_insert by setting it to 1"
@@ -12551,6 +12520,27 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "memcached usage"
+#~ msgstr "bellek önbelleklemesi kullanımı"
+
+#~ msgid "% open files"
+#~ msgstr "% açık dosyalar"
+
+#~ msgid "% connections used"
+#~ msgstr "% bağlantı kullanıldı"
+
+#~ msgid "% aborted connections"
+#~ msgstr "% durdurulan bağlantılar"
+
+#~ msgid "CPU Usage"
+#~ msgstr "İşlemci Kullanımı"
+
+#~ msgid "Memory Usage"
+#~ msgstr "Bellek Kullanımı"
+
+#~ msgid "Swap Usage"
+#~ msgstr "Takas Kullanımı"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS Kitabı"
diff --git a/po/tt.po b/po/tt.po
index 0302db302c..d43ff9aeb5 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \n"
+"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tt\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Barısın kürsät"
@@ -47,7 +47,7 @@ msgstr "Ezläw"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Tezeş adı"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Açıqlama"
@@ -201,7 +201,7 @@ msgstr "Bonı belän bäyläneş:"
msgid "Comments"
msgstr "Açıqlama"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "Açıqlama"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Yuq"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "Yuq"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -364,7 +364,7 @@ msgstr "Bäyläneşlär sxeme"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -634,8 +634,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -645,7 +645,7 @@ msgstr "Qaraş"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
#, fuzzy
msgid "Replication"
msgstr "Bäyläneşlär"
@@ -688,7 +688,7 @@ msgstr "Check overheaded"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
@@ -756,10 +756,10 @@ msgstr "Tüşämä tikşerü"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -781,7 +781,7 @@ msgstr ""
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Torış"
@@ -885,8 +885,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -922,7 +922,7 @@ msgstr "Tamğa beterelde."
msgid "Showing bookmark"
msgstr "Bitbilge kürsätü"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "%s digän bitbilge yaratıldı"
@@ -969,15 +969,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1066,12 +1066,12 @@ msgstr "Bu xoquqlarnı yöklä"
msgid "Removing Selected Users"
msgstr "Saylanğan qullanuçı beterü"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1079,17 +1079,17 @@ msgstr ""
msgid "Edit"
msgstr "Tözätü"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Server Saylaw"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
msgid "Live query chart"
msgstr "SQL-soraw"
@@ -1101,13 +1101,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Tulayım"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1139,7 +1139,7 @@ msgstr "Server Saylaw"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Proseslar"
@@ -1159,170 +1159,202 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
msgid "Query statistics"
msgstr "Kerem Nöfüse"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Local monitor configuration icompatible"
+msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Soraw alxätere"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Soraw alxätere"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Soraw alxätere"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Tulayım"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Bufer Pulı"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Tulayım"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Buş bit sanı"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Alındı"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Totaşular"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
msgid "Questions"
msgstr "Farsíça"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Taşım"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Bäyläneşlär buyınça töp mömkinleklär"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Biremlekne bolay atap quy"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Buş"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1330,385 +1362,385 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Sünek"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, 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:148
+#: js/messages.php:155
#, 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:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Yomğaq başlığı"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
msgid "Jump to Log table"
msgstr "Biremleklär yuq"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
msgid "Filters"
msgstr "Alan"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
#, fuzzy
msgid "Filter"
msgstr "Alan"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
msgid "Sum of grouped rows:"
msgstr "Tezelgän yazma sanı bu."
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Tulayım"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
msgid "Loading logs"
msgstr "Cirle"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Rename database to"
msgid "Reload page"
msgstr "Biremlekne bolay atap quy"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Yökläw"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Sorawnı Yañart"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Qullanma"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Documentation"
msgid "Justification"
msgstr "Qullanma"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
msgid "Loading"
msgstr "Cirle"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Proseslar"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Biremlekne bolay atap quy"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Biremlekne bolay atap quy"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Biremlekne boña kübäyt"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Bilgelämä"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
msgid "Create Table"
msgstr "Yaña Bit yaratu"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Tüşämä qullanıp"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Tezeşlär"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Sırlı kürsät"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Ezläw"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
msgid "Hide search results"
msgstr "SQL-soraw"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
msgid "Show search results"
msgstr "SQL-soraw"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Küzätü"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "\"%s\" Beterü"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
msgid "Hide query box"
msgstr "SQL-soraw"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
msgid "Show query box"
msgstr "SQL-soraw"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Kertemnär sayladı"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Üzgärt"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1716,110 +1748,110 @@ msgstr ""
msgid "Save"
msgstr "Saqla"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Qarama"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s alan östäw"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Kürsätäse Alan saylaw"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Sersüz Ürçetü"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Ürçet"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Sersüz üzgärtü"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dşm"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1827,30 +1859,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
msgid ", latest stable version:"
msgstr "Server söreme"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
msgid "up to date"
msgstr "Biremleklär yuq"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
msgid "Done"
msgstr "Eçtälek"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Uzğan"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1858,96 +1890,96 @@ msgid "Next"
msgstr "Kiläse"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Tulayım"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Äpr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "May"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Yün"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Yül"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Ökt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1955,78 +1987,78 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ykş"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dşm"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sşm"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cmğ"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2034,100 +2066,100 @@ msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Şmb"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ykş"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dşm"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sşm"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çrş"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pnc"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cmğ"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şmb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "totıla"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2385,8 +2417,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2526,7 +2558,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Tüşämä"
@@ -2609,7 +2641,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2658,7 +2690,7 @@ msgid "Documentation"
msgstr "Qullanma"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-soraw"
@@ -2696,7 +2728,7 @@ msgid "Create PHP Code"
msgstr "PHP-Kod yasa"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Yañart"
@@ -2719,7 +2751,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Engine"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2824,7 +2856,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5425,8 +5457,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5643,7 +5675,7 @@ msgstr "Qullanası tezeş"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5715,7 +5747,7 @@ msgid "The row has been deleted"
msgstr "Bu yazma salınğan buldı"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Üter"
@@ -5731,7 +5763,7 @@ msgstr "Yazma sanı:"
msgid "total"
msgstr "tulayım"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Soraw eşkärtü %01.4f sek aldı"
@@ -5805,7 +5837,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer Pulı"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB Torışı"
@@ -6164,8 +6196,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6281,28 +6313,28 @@ msgid "Display MIME types"
msgstr "Barlıq MIME-törlär"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Ürçäw Zamanı"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Server söreme"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP Söreme"
@@ -6507,50 +6539,50 @@ msgid "Generated by"
msgstr "Ürçätkeç:"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
#, fuzzy
msgid "Go to database"
msgstr "Biremleklär yuq"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to table"
msgstr "Biremleklär yuq"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Tözeleşen genä"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -7001,14 +7033,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Üzgärmä"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Bäyä"
@@ -7224,7 +7256,7 @@ msgid "Returns"
msgstr "Tüşämä köyläneşe"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Waqıt"
@@ -7707,12 +7739,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Binar köndälek"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Üzgärmälär"
@@ -7770,11 +7802,11 @@ msgstr "Täqwim"
msgid "Columns"
msgstr "Alan iseme"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Bu SQL-sorawğa tamğa quy"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
@@ -7874,8 +7906,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
-"squllanmada%s uqıp bula."
+"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
+"%squllanmada%s uqıp bula."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8220,7 +8252,7 @@ msgstr "Protokol söreme"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Qullanuçı"
@@ -8686,18 +8718,18 @@ msgstr "\"%s\" atlı tüşämä yuq äle!"
msgid "Select binary log to view"
msgstr "Qaraw öçen binar köndälek saylaw"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
#, fuzzy
msgid "Files"
msgstr "Alan"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Sorawnı Qısqartıp Kürsätäse"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Tulı Sorawlar Kürsät"
@@ -9089,8 +9121,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "
@@ -9223,7 +9255,7 @@ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -9363,135 +9395,135 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s cebe uñışlı üterelgän buldı."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Eşkärtkeç"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Soraw alxätere"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Ceplär"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Çaqlı birem"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Kiçerelgän östäw"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Tezeş alxätere"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Bäylär"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Tezü"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Eş-ara idäräçese"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Tüşämälärne yabıp beteräse"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Soraw alxäteren awdar"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Eşläw Torışı"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Yañart"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Sersüzen üzgärtäse tügel"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Bäyläneşlär"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Soraw töre"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "Funksí"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9506,131 +9538,131 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "säğät sayın"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "minut sayın"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "sekund sayın"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Cömlä"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
#, fuzzy
msgid "Replication status"
msgstr "Bäyläneşlär"
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Alındı"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Cibärelde"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Özderelde"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Ämer"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9638,78 +9670,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9717,7 +9749,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9725,43 +9757,43 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
#, fuzzy
msgid "The number of pages currently dirty."
msgstr "Yaratılğan bit sanı bu."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Buş bitlär sanı."
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9769,33 +9801,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9804,92 +9836,92 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
#, fuzzy
msgid "The current number of pending reads."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:1176
+#: server_status.php:1218
#, fuzzy
msgid "The current number of pending writes."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
#, fuzzy
msgid "The total number of data reads."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:1179
+#: server_status.php:1221
#, fuzzy
msgid "The total number of data writes."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
#, fuzzy
msgid "The number of log write requests."
msgstr "Tezelgän yazma sanı bu."
-#: server_status.php:1185
+#: server_status.php:1227
#, 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:1186
+#: server_status.php:1228
#, 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:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Yaratılğan bit sanı bu."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9898,144 +9930,144 @@ msgstr ""
"values are counted in pages; the page size allows them to be easily "
"converted to bytes."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
#, 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:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Açıq toruçı birem sanı."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Açıq toruçı tüşämä sanı."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "Alxätergä turı kilü sanı bu."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10043,99 +10075,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Tezelgän yazma sanı bu."
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10143,18 +10175,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Biredä açıq bulğan totaşu sanı."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10162,65 +10194,65 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
#, fuzzy
msgid "The number of threads that are not sleeping."
msgstr "Açıq toruçı birem sanı."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Şmb"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "%s alan östäw"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Yañart"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Add/Delete Field Columns"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10229,7 +10261,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10237,7 +10269,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10249,7 +10281,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Soraw töre"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "sekund sayın"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -10774,37 +10796,37 @@ msgstr ""
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
#, fuzzy
msgid "Showing SQL query"
msgstr "Tulı Sorawlar Kürsät"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL'nı Tikşer"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Yarlıq"
@@ -11597,8 +11619,8 @@ msgid "Current amount of Questions: %s"
msgstr "Totaşular"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
-msgid "% slow queries"
+#, fuzzy
+msgid "Percentage of slow queries"
msgstr "Tulı Sorawlar Kürsät"
#: po/advisory_rules.php:16
@@ -11620,7 +11642,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Soraw alxäteren awdar"
#: po/advisory_rules.php:21
@@ -11801,12 +11823,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Totılğan Alan"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11863,8 +11879,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11971,9 +11987,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Waqıtlı tüşämä yasaw xoquqı."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11991,13 +12007,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Waqıtlı tüşämä yasaw xoquqı."
#: po/advisory_rules.php:113
#, php-format
@@ -12029,8 +12047,9 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+msgid "Rate of joins without indexes"
+msgstr "Tüşämä tikşerü"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12049,7 +12068,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12072,7 +12091,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12081,7 +12100,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12094,7 +12113,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12103,8 +12122,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12135,10 +12154,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "%s tüşämä"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12165,8 +12182,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "%s tüşämä"
#: po/advisory_rules.php:152
msgid ""
@@ -12207,8 +12226,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Tezü bufer küläme"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -12228,8 +12249,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Tezü bufer küläme"
#: po/advisory_rules.php:168
#, php-format
@@ -12237,7 +12260,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -12256,7 +12279,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Yaña Bit yaratu"
#: po/advisory_rules.php:176
@@ -12276,10 +12299,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Açıq tüşämä tezmäse"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Yöklänğan birem tözeleşe"
#: po/advisory_rules.php:181
msgid ""
@@ -12302,7 +12325,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Yöklänğan birem tözeleşe"
#: po/advisory_rules.php:186
@@ -12346,7 +12369,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Tezeş alxätere"
#: po/advisory_rules.php:201
@@ -12364,8 +12387,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Key cache"
+msgid "Thread cache hit rate %"
+msgstr "Tezeş alxätere"
#: po/advisory_rules.php:206
msgid "Thread cache is not efficient."
@@ -12420,9 +12445,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "Totaşular"
#: po/advisory_rules.php:221
@@ -12447,7 +12472,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "Totaşular"
#: po/advisory_rules.php:226
@@ -12470,7 +12495,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Totaşular"
#: po/advisory_rules.php:231
@@ -12484,8 +12509,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Yöklänğan birem tözeleşe"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12506,7 +12533,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Yöklänğan birem tözeleşe"
#: po/advisory_rules.php:243
@@ -12533,8 +12560,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Bufer pul olılığı"
#: po/advisory_rules.php:251
msgid ""
@@ -12642,6 +12671,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Totılğan Alan"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Açıq tüşämä tezmäse"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Totaşular"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Totaşular"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Totılu"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Totılu"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/ug.po b/po/ug.po
index 0baabe2437..a9ae6d0c46 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,18 +6,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \n"
+"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "ھەممىسىنى كۆرسىتىش"
@@ -49,7 +49,7 @@ msgstr "ئىزدەش"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -90,7 +90,7 @@ msgstr "قىممەت ئىسمى"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "ئىزاھات"
@@ -201,7 +201,7 @@ msgstr "ئۇلانما"
msgid "Comments"
msgstr "ئىزاھلار"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -212,12 +212,12 @@ msgstr "ئىزاھلار"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "يوق"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -233,7 +233,7 @@ msgstr "يوق"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -347,8 +347,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
-"sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
+"%sبۇ يەرنى كۆرۈڭ%s."
#: db_operations.php:584
#, fuzzy
@@ -358,7 +358,7 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -618,8 +618,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -629,7 +629,7 @@ msgstr "قاراش"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "كۆچۈرۈش"
@@ -671,7 +671,7 @@ msgstr "مەزمۇن بارلارنى تاللاش"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "چىقىرىش"
@@ -735,10 +735,10 @@ msgstr "ئىزلانغان جەدۋەل"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -758,7 +758,7 @@ msgstr "يېڭلاش"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "ھالەت"
@@ -857,8 +857,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@@ -901,7 +901,7 @@ msgstr "خەتكۈچ ئۆچۈرۈلدى"
msgid "Showing bookmark"
msgstr "خەتكۈچنى كۆرسىتىش"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "قۇرۇلغان خەتكۈچ %s"
@@ -952,15 +952,15 @@ msgstr "بىر چىكىپ تاللاڭ"
msgid "Click to unselect"
msgstr "بىر چىكىپ بىكار قىلىڭ"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "راستىنلا ئجرا قىلىمسىز"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
@@ -1047,12 +1047,12 @@ msgstr "ھوقۇقسىز"
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr ""
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1060,17 +1060,17 @@ msgstr ""
msgid "Edit"
msgstr "تەھىرلەش"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "مۇلازىمىتېر تاللاش"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL query"
msgid "Live query chart"
@@ -1083,13 +1083,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "يىغىندىسى"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1121,7 +1121,7 @@ msgstr "مۇلازىمىتېر تاللاش"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1139,166 +1139,198 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr ""
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not load default configuration from: %1$s"
+msgid "Local monitor configuration icompatible"
+msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Query cache efficiency"
+msgstr "ئىزلاش ئاكتىپ ئەمەس"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Latched pages"
+msgid "Query cache usage"
+msgstr "قۇلۇپلانغان بەت"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Latched pages"
+msgid "Query cache used"
+msgstr "قۇلۇپلانغان بەت"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KiB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "يىغىندىسى"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "ئاق(قۇرۇق)بەت"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "نەشىر"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "يوق"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1306,384 +1338,384 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr ""
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "تاقالدى"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "دوكلات تېمىسى"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Jump to Log table"
msgstr "%s جەدۋەل"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of columns"
msgid "Sum of grouped rows:"
msgstr "سۆزلەم سانى"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "يىغىندىسى"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "No Privileges"
msgid "Loading logs"
msgstr "ھوقۇقسىز"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Remove database"
msgid "Reload page"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "كىرگۈزۈش"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "يېڭلاش"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "قوللانما"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "تەپسىلاتلار..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authenticating..."
msgid "Justification"
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "بىكار قىلىش"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr ""
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr ""
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Remove database"
msgid "Reload Database"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "كۆچۈرۈلگەن ساندان"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one column."
msgid "Table must have at least one column"
msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك"
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create"
msgid "Create Table"
msgstr "قۇرۇش"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "جەدۋەللەرنى ئىشلىتىش"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "تېزىسلار"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Indexes"
msgid "Show indexes"
msgstr "تېزىسلار"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ئىزدەش"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "SQL query"
msgid "Show search results"
msgstr "SQL سورىقى"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "كۆزەت"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "ئۆچۈرۈش"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr ""
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "SQL query"
msgid "Show query box"
msgstr "SQL سورىقى"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "ئۆزگەرتتىش"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr ""
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1691,107 +1723,107 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "SQL query"
msgid "Show search criteria"
msgstr "SQL سورىقى"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr ""
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Add columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "سېرتقى ئۇلىنىشنى تاللاش"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "تاشقى ئاچقۇق قىممىتى"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ"
# column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "سۆزلەمنى كۆرسەتمەسلىك"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "بىر چىكىپ تاللاڭ"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "پارول ھاسىللاش"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "ھاسىللاش"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "پارولنى ئۆزگەرتىش"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "تېخىمۇ كۆپ"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1799,13 +1831,13 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "ېيڭى نەشىر"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
@@ -1813,18 +1845,18 @@ msgid "up to date"
msgstr "%s جەدۋەل"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "تامام"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "ئالدىنقى ئاي"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1832,149 +1864,149 @@ msgid "Next"
msgstr "كىيىنكى ئاي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "بۈگۈن"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "قەھرىتان"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "ھۇت"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "نورۇز"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "ئۈمىد"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "باھار"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "6-ئاي"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "7-ئاي"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "8-ئاي"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "9-ئاي"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "10-ئاي"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "11-ئاي"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "12-ئاي"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "1-ئاي"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "2-ئاي"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "3-ئاي"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "4-ئاي"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "5-ئاي"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "6-ئاي"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "چىللە"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "تومۇز"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "مىزان"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "ئوغۇز"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "ئوغلاق"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "كۆنەك"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "يەكشەنبە"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "دۈشەنبە"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "سەيشەنبە"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "چارشەنبە"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "پەيشەنبە"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "جۈمە"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "شەنبە"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1982,84 +2014,84 @@ msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "دۈشەنبە"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "سەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "چارشەنبە"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "پەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "جۈمە"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "شەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "يەكشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "دۈشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "سەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "چارشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "پەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "جۈمە"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "شەنبە"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "ھەپتە"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "سائەت"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "مىنۇت"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "سېكنۇت"
@@ -2316,11 +2348,11 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:109
msgid ""
@@ -2459,7 +2491,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr ""
@@ -2536,7 +2568,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "مۇلازىمىتېر"
@@ -2585,7 +2617,7 @@ msgid "Documentation"
msgstr "قوللانما"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL سورىقى"
@@ -2623,7 +2655,7 @@ msgid "Create PHP Code"
msgstr "PHP كودى قۇرۇش"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "يېڭلاش"
@@ -2644,7 +2676,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ئىچكى بىرلىشىش"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "ئاساسىي مەزمۇن"
@@ -2753,7 +2785,7 @@ msgstr "بىر چىكىپ تاللاڭ"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5263,8 +5295,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5477,7 +5509,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5543,7 +5575,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5559,7 +5591,7 @@ msgstr ""
msgid "total"
msgstr "ئۇمۇمىي"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5632,7 +5664,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5975,8 +6007,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6089,28 +6121,28 @@ msgid "Display MIME types"
msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "ئاساسىي ماشىنا"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "قۇرۇلغان ۋاقتى"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "مۇلازىمىتىر نۇسخىسى"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHPنۇسخىسى"
@@ -6305,48 +6337,48 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "تۈزىلىشىنىلا"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6792,14 +6824,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr ""
@@ -7012,7 +7044,7 @@ msgid "Returns"
msgstr "تۈرگە قايتىش"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "ۋاقىت"
@@ -7490,12 +7522,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7548,11 +7580,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7902,7 +7934,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr ""
@@ -8002,8 +8034,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
-"sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
+"%sبۇ يەرنى كۆرۈڭ%s."
#: main.php:314
msgid ""
@@ -8338,17 +8370,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8726,8 +8758,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8849,7 +8881,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8986,128 +9018,128 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "يېڭلاش"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr ""
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "مۇناسىۋىتى"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "تەكشۈرۈش"
-#: server_status.php:759
+#: server_status.php:801
msgid "Instructions"
msgstr ""
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9122,128 +9154,128 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "بۇيرۇق"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9251,78 +9283,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9330,7 +9362,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9338,42 +9370,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9381,33 +9413,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9416,227 +9448,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9644,99 +9676,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9744,18 +9776,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9763,62 +9795,62 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Routines"
msgid "Add chart"
msgstr "دائىملىق"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "يېڭلاش"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9827,7 +9859,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9835,7 +9867,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9847,7 +9879,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "تەكشۈرۈش"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "سېكنۇت"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10360,34 +10386,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -11148,8 +11174,7 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -11171,7 +11196,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "SQL query"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "SQL سورىقى"
#: po/advisory_rules.php:21
@@ -11350,12 +11375,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Latched pages"
-msgid "memcached usage"
-msgstr "قۇلۇپلانغان بەت"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11410,8 +11429,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11512,8 +11531,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11529,12 +11547,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11567,8 +11585,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "Rate of joins without indexes"
+msgstr "ئىزلانغان جەدۋەل"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11588,7 +11608,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11611,7 +11631,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11620,7 +11640,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11633,7 +11653,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11642,8 +11662,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11674,11 +11694,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s جەدۋەل"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11705,8 +11722,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s جەدۋەل"
#: po/advisory_rules.php:152
msgid ""
@@ -11745,7 +11765,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11766,7 +11786,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11775,7 +11795,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11795,7 +11815,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "قۇرۇش"
#: po/advisory_rules.php:176
@@ -11814,9 +11834,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, php-format
-msgid "% open files"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: po/advisory_rules.php:181
msgid ""
@@ -11839,7 +11860,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: po/advisory_rules.php:186
@@ -11880,7 +11901,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11898,8 +11919,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "ئىزلاش ئاكتىپ ئەمەس"
#: po/advisory_rules.php:206
#, fuzzy
@@ -11955,10 +11978,8 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "PBMS connection failed:"
-msgid "% connections used"
-msgstr "PBMS ئۇلىنالمىدى:"
+msgid "Percentage of used connections"
+msgstr ""
#: po/advisory_rules.php:221
msgid ""
@@ -11980,8 +12001,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:225
-msgid "% aborted connections"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted connections"
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12001,8 +12024,10 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
#: po/advisory_rules.php:230
-msgid "rate of aborted connections"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Rate of aborted connections"
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: po/advisory_rules.php:231
msgid "Too many connections are aborted"
@@ -12015,8 +12040,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12037,7 +12064,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "كىرگۈزگەن ھۆججەت شەكلى"
#: po/advisory_rules.php:243
@@ -12064,7 +12091,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12171,6 +12198,14 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "قۇلۇپلانغان بەت"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "PBMS ئۇلىنالمىدى:"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/uk.po b/po/uk.po
index feafed80fc..0ec109037c 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-07-03 18:10+0200\n"
"Last-Translator: \n"
"Language-Team: ukrainian \n"
+"Language: uk\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"
+"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: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Показати все"
@@ -48,7 +48,7 @@ msgstr "Шукати"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -89,7 +89,7 @@ msgstr "Ім'я ключа"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Опис"
@@ -202,7 +202,7 @@ msgstr "Лінки до"
msgid "Comments"
msgstr "Коментарі"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Коментарі"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Ні"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Ні"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -357,7 +357,7 @@ msgstr "Редагувати або експортувати схему зв'я
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -621,8 +621,8 @@ msgstr "Трекінг не активний."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -632,7 +632,7 @@ msgstr ""
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr ""
@@ -674,7 +674,7 @@ msgstr ""
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Експорт"
@@ -738,10 +738,10 @@ msgstr ""
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -761,7 +761,7 @@ msgstr "Оновлено"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Статус"
@@ -860,8 +860,8 @@ msgstr "Dump збережено у файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -897,7 +897,7 @@ msgstr "Закладку було видалено."
msgid "Showing bookmark"
msgstr ""
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -944,15 +944,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Оператори \"DROP DATABASE\" заборонені."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ви насправді хочете "
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1029,12 +1029,12 @@ msgstr "Перезавантаження прав"
msgid "Removing Selected Users"
msgstr "Видалити відмічених користувачів"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Закрити"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1042,17 +1042,17 @@ msgstr "Закрити"
msgid "Edit"
msgstr "Редагувати"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Вибір сервера"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL query"
msgid "Live query chart"
@@ -1065,13 +1065,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Разом"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "Інше"
@@ -1103,7 +1103,7 @@ msgstr "Вибір сервера"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Процеси"
@@ -1121,166 +1121,198 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "Статистика запиту"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "Неможливо прочитати конфігураційний файл."
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Query cache efficiency"
+msgstr "Трекінг не активний."
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache usage"
+msgstr "Простір, що використовується"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Space usage"
+msgid "Query cache used"
+msgstr "Простір, що використовується"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "кБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "Разом"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Разом"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Отримано"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "З'єднань"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Relations"
msgid "Questions"
msgstr "Зв'язки"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Трафік"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "Загальні можливості"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "Видалити базу даних"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Немає"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1288,366 +1320,366 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "дозволено"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "заблоковано"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "Загальні можливості"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "Загальні можливості"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
msgstr "Імпорт файлів"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "Перейти до бази даних"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of rows:"
msgid "Sum of grouped rows:"
msgstr "Число рядків:"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Разом"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "Завантаження"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload Database"
msgid "Reload page"
msgstr "Перезавантаження бази даних"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Імпорт"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Доповнити запит"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Документація"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "Аутентифікація"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Скасувати"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "Завантаження"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "Обробка запиту"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "Помилка при обробці запиту"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "Перейменування баз даних"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "Перезавантаження бази даних"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "Копіювання бази даних"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "Зміна Кодування"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "Таблиця повинна мати принаймі один Стовпчик"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "Створити Таблицю"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "Вставити таблицю"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "Індекси"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Показати сітку"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "Пошук"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "Сховати результати пошуку"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "Показати результати пошуку"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Переглянути"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Усунути %s"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "Сховати блок запиту"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "Показати блок запиту"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Рядків не вибрано"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Змінити"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Максимальний час виконання"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1655,100 +1687,100 @@ msgstr "Максимальний час виконання"
msgid "Save"
msgstr "Зберегти"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "Сховати критерії пошуку"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "Показати критерії пошуку"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Ігнорувати"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add into comments"
msgid "Add columns"
msgstr "Додати коментар"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Виберіть колонку для відображення"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr ""
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "Згенерувати пароль"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Згенерувати"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "Змінити пароль"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "Більше"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1756,29 +1788,29 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Перейти до бази даних"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "Готово"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Попередні"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1786,149 +1818,149 @@ msgid "Next"
msgstr "Наступні"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "Сьогодні"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "Січень"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "Лютий"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "Березень"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "Квітень"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Травень"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "Червень"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "Липень"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "Серпень"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "Вересень"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "Жовтень"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "Листопад"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "Грудень"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Гру"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "Неділя"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "Понеділок"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "Вівторок"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "Середа"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "Четвер"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "П'ятниця"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "Субота"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1936,84 +1968,84 @@ msgid "Sun"
msgstr "Нд"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "Нд"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr ""
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "Хвилина"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "Секунда"
@@ -2265,8 +2297,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:109
@@ -2404,7 +2436,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Таблиць"
@@ -2481,7 +2513,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сервер"
@@ -2530,7 +2562,7 @@ msgid "Documentation"
msgstr "Документація"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL-запит"
@@ -2568,7 +2600,7 @@ msgid "Create PHP Code"
msgstr "Створити PHP код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Оновити"
@@ -2589,7 +2621,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr ""
@@ -2694,7 +2726,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5143,8 +5175,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5343,7 +5375,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5413,7 +5445,7 @@ msgid "The row has been deleted"
msgstr "Рядок видалено"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Вбити"
@@ -5429,7 +5461,7 @@ msgstr "Показано записи "
msgid "total"
msgstr "всього"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запит виконувався %01.4f сек"
@@ -5502,7 +5534,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "Статус InnoDB"
@@ -5845,8 +5877,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5959,28 +5991,28 @@ msgid "Display MIME types"
msgstr "Доступні MIME-types"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Час створення"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Версія сервера"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "Версія PHP"
@@ -6176,48 +6208,48 @@ msgid "Generated by"
msgstr "Згенеровано"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr ""
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Лише структуру"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6667,14 +6699,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Змінна"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Значення"
@@ -6891,7 +6923,7 @@ msgid "Returns"
msgstr "Налаштування таблиці"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Час"
@@ -7374,12 +7406,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Змінні"
@@ -7434,11 +7466,11 @@ msgstr ""
msgid "Columns"
msgstr "Назви колонок"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Закладка на даний SQL-запит"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7584,8 +7616,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
-"sописи перетворень%s"
+"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
+"%sописи перетворень%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@@ -7858,7 +7890,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Користувач"
@@ -8310,17 +8342,17 @@ msgstr "Таблиці \"%s\" не існує!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Обрізати показані запити"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Показати повні запити"
@@ -8714,8 +8746,8 @@ msgstr "Усунути бази даних, які мають такі ж наз
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@@ -8848,7 +8880,7 @@ msgstr "Права успішно перезавантажено."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8985,136 +9017,136 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процес %s припинено."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "Інформація про роботу сервера"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Оновити"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Не змінювати пароль"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show tables"
msgid "Show only alert values"
msgstr "Показати таблиці"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show tables"
msgid "Show unformatted values"
msgstr "Показати таблиці"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Зв'язки"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Тип запиту"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Administration"
msgid "Instructions"
msgstr "Адміністратор"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9129,129 +9161,129 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "за годину"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "за хвилину"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "за секунду"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Параметр"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr "Отримано"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Відправлено"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Невдалих спроб"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Перервано"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Команда"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9259,78 +9291,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9338,7 +9370,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9346,42 +9378,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9389,33 +9421,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9424,227 +9456,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9652,99 +9684,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9752,18 +9784,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9771,63 +9803,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add into comments"
msgid "Add chart"
msgstr "Додати коментар"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Оновити"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Column names"
msgid "Chart columns"
msgstr "Назви колонок"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr ""
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9836,7 +9868,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9844,7 +9876,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9856,7 +9888,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9865,101 +9897,91 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Використання"
+#| msgid "Remove database"
+msgid "Preset chart"
+msgstr "Видалити базу даних"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Використання"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Вибрати таблиці"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Неправильна назва таблиці"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "Додати нового користувача"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "Статистика рядка"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Вибрати таблиці"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тип запиту"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -9968,7 +9990,7 @@ msgstr[0] "Секунда"
msgstr[1] "Секунда"
msgstr[2] "Секунда"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10381,36 +10403,36 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Перевірити SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Мітка"
@@ -11188,8 +11210,7 @@ msgid "Current amount of Questions: %s"
msgstr "З'єднань"
#: po/advisory_rules.php:15
-#, php-format
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr ""
#: po/advisory_rules.php:16
@@ -11211,7 +11232,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show query box"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Показати блок запиту"
#: po/advisory_rules.php:21
@@ -11390,12 +11411,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Простір, що використовується"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11452,8 +11467,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11556,9 +11571,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Дозволити створювати тимчасові таблиці."
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11576,13 +11591,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Дозволити створювати тимчасові таблиці."
#: po/advisory_rules.php:113
#, php-format
@@ -11614,7 +11631,7 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
+msgid "Rate of joins without indexes"
msgstr ""
#: po/advisory_rules.php:121
@@ -11633,7 +11650,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11656,7 +11673,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11665,7 +11682,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11678,7 +11695,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11687,8 +11704,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11719,11 +11736,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s таблиця"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11750,8 +11764,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s таблиця"
#: po/advisory_rules.php:152
msgid ""
@@ -11790,7 +11807,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11811,7 +11828,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11820,7 +11837,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11840,7 +11857,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create a page"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Створити нову сторінку"
#: po/advisory_rules.php:176
@@ -11859,9 +11876,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, php-format
-msgid "% open files"
-msgstr ""
+#, fuzzy
+#| msgid "Character set of the file:"
+msgid "Percentage of used open files limit"
+msgstr "Кодування файлу:"
#: po/advisory_rules.php:181
msgid ""
@@ -11884,7 +11902,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Character set of the file:"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Кодування файлу:"
#: po/advisory_rules.php:186
@@ -11925,7 +11943,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11943,8 +11961,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Трекінг не активний."
#: po/advisory_rules.php:206
#, fuzzy
@@ -12000,9 +12020,9 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Connections"
-msgid "% connections used"
+msgid "Percentage of used connections"
msgstr "З'єднань"
#: po/advisory_rules.php:221
@@ -12027,7 +12047,7 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
#| msgid "Connections"
-msgid "% aborted connections"
+msgid "Percentage of aborted connections"
msgstr "З'єднань"
#: po/advisory_rules.php:226
@@ -12050,7 +12070,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "З'єднань"
#: po/advisory_rules.php:231
@@ -12064,8 +12084,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Percentage of aborted clients"
+msgstr "Зміст"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12086,7 +12108,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Table of contents"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Зміст"
#: po/advisory_rules.php:243
@@ -12111,7 +12133,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12218,6 +12240,26 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Простір, що використовується"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "З'єднань"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "З'єднань"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Використання"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Використання"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
@@ -12306,8 +12348,8 @@ msgstr ""
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %"
-#~ "s запитів."
+#~ "Статистика запитів: З моменту запуску, до сервера було надіслано "
+#~ "%s запитів."
#~ msgid "Chart generated successfully."
#~ msgstr "Права успішно перезавантажено."
diff --git a/po/ur.po b/po/ur.po
index 2078cdbe19..50ffbbeeb7 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,18 +6,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan \n"
"Language-Team: Urdu \n"
+"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "تمام دکھائیں"
@@ -49,7 +49,7 @@ msgstr "تلاش"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -90,7 +90,7 @@ msgstr "کلید نام"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "وضاحت"
@@ -206,7 +206,7 @@ msgstr "ربط بطرف"
msgid "Comments"
msgstr "تبصرہ"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -217,12 +217,12 @@ msgstr "تبصرہ"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "نہیں"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -238,7 +238,7 @@ msgstr "نہیں"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -361,7 +361,7 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -623,8 +623,8 @@ msgstr "کھوج غیر فعال ہے۔"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
@@ -635,7 +635,7 @@ msgstr "نقل جدول"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "چربہ کاری"
@@ -677,7 +677,7 @@ msgstr "اوور ہیڈ جداول کی پڑتال کریں"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "برآمد"
@@ -743,10 +743,10 @@ msgstr "کھوج شدہ جداول"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -766,7 +766,7 @@ msgstr "تازہ کی گئی"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "حالت"
@@ -865,11 +865,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔"
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
-"sdocumentation%s دیکھیں۔"
+"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
+"%sdocumentation%s دیکھیں۔"
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -909,7 +909,7 @@ msgstr "نشانی حذف ہوچکا ہے۔"
msgid "Showing bookmark"
msgstr "نشانی دکھاتے ہوئے"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "نشانی %s بنایا گیا"
@@ -960,15 +960,15 @@ msgstr "انتخاب کے لیے کلک کریں"
msgid "Click to unselect"
msgstr "غیر منتخب کے لیے کلک کریں"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "کیا آپ واقعی چاہتے ہیں"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
@@ -1052,12 +1052,12 @@ msgstr "استحقاق پھر لوڈ کرتے ہوئے"
msgid "Removing Selected Users"
msgstr "منتخب صارفین ہٹائے جارہے ہیں"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "بند کریں"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1065,17 +1065,17 @@ msgstr "بند کریں"
msgid "Edit"
msgstr "تدوین"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "سرور انتخاب"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "Hide query box"
msgid "Live query chart"
@@ -1088,13 +1088,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "میزان"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1126,7 +1126,7 @@ msgstr "سرور انتخاب"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr ""
@@ -1146,164 +1146,196 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "طلب شماریات"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "تشکیلی مسل"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "SQL query history table"
+msgid "Query cache efficiency"
+msgstr "SQL طلب لاگ جدول"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache usage"
+msgstr "طلب نتائج"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query results"
+msgid "Query cache used"
+msgstr "طلب نتائج"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "میگا بائٹ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "کلو بائٹ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total"
msgid "Total memory"
msgstr "میزان"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr ""
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "میزان"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr ""
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "نسخے"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr ""
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "جنرل ریلیشن فیچرز"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "کوائفیہ ہٹائیں"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1311,371 +1343,371 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, php-format
msgid "Set log_output to %s"
msgstr ""
#. l10n: Enable in this context means setting a status variable to ON
-#: js/messages.php:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "غیر فعال"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
msgstr "جنرل ریلیشن فیچرز"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
msgstr "جنرل ریلیشن فیچرز"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Default"
msgid "Chart Title"
msgstr "ڈیفالٹ"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
msgid "Differential"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "کوائفیہ جائیں"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr ""
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr ""
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "داخل شدہ صفوں کی تعداد"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "میزان"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "لوڈ کررہا ہے"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload Database"
msgid "Reload page"
msgstr "کوائفیہ پھر لوڈ کریں"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "درآمد"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "طلب تازہ کریں"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "دستاویزات"
-#: js/messages.php:193
+#: js/messages.php:200
msgid "Rule details"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "توثیق"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "منسوخ کریں"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "لوڈ کررہا ہے"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "فرمایش عمل کرتے ہوئے"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "فرمایش عمل کرتے ہوئے نقص ہے"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "کالم چھوڑا جارہا ہے"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "بنیادی کلید شامل کررہا ہے"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ٹھیک ہے"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "کوائفیہ نام بدلا جارہا ہے"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "کوائفیہ پھر لوڈ کریں"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "کوائفیہ نقل کیا جارہا ہے"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "جدول میں کم از کم ایک کالم ہو"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "جدول بنائیں"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "جداول استعمال کریں"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Indexes"
msgid "Hide indexes"
msgstr "اشاریے"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "گرِڈ دکھائیں"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "تلاش کر رہا ہے"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
msgstr "تلاش کسوٹی چھپائیں"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
msgstr "تلاش کسوٹی دکھائیں"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "براؤز"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "حذف"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "طلب خانہ چھپائیں"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "طلب خانہ دکھائیں"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr ""
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "چلنے کی حد اوقات"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1683,134 +1715,134 @@ msgstr "چلنے کی حد اوقات"
msgid "Save"
msgstr ""
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "تلاش کسوٹی چھپائیں"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "تلاش کسوٹی دکھائیں"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "نظر انداز کریں"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "محولہ کلید منتخب کریں"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "فارن کلید منتخب کریں"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "ایک بنیادی یا منفرد کلید منتخب کریں"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "کالم دکھانے کے لیے انتخاب کریں"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "کالم کے لیے ایک اختیار اضافہ کریں"
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "انتخاب کے لیے کلک کریں"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "پاس ورڈ بنائیں"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "بنائیں"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "پاس ورڈ تبدیل کریں"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "مزید"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
-"s, جاری کیا گیا %s."
+"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
+"%s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ", حالیہ مستحکم نسخہ:"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "کوائفیہ جائیں"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "ہوچکا"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "پچھلا"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1818,149 +1850,149 @@ msgid "Next"
msgstr "اگلا"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "آج"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "جنوری"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "فروری"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "مارچ"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "اپریل"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "مئی"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "جون"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "جولائی"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "اگست"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "ستمبر"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "اکتوبر"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "نومبر"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "دسمبر"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "جنوری"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "فروری"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "مارچ"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "اپریل"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "مئی"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "جون"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "جولائی"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "اگست"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "ستمبر"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "اکتوبر"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "نومبر"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "دسمبر"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "اتوار"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "پیر"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "منگل"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "بدھ"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "جمعرات"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "جمعہ"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "ہفتہ"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1968,84 +2000,84 @@ msgid "Sun"
msgstr "اتوار"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "پیر"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "منگل"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "بدھ"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "جمعرات"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "جمعہ"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "ہفتہ"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "اتوار"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "پیر"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "منگل"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "بدھ"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "جمعرات"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "جمعہ"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "ہفتہ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "ہفتہ وار"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "گھنٹہ"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "منٹ"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "سیکنڈ"
@@ -2304,8 +2336,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@@ -2446,7 +2478,7 @@ msgstr "حصہ دارانہ"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "جداول"
@@ -2524,7 +2556,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔"
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "سرور"
@@ -2573,7 +2605,7 @@ msgid "Documentation"
msgstr "دستاویزات"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL طلب"
@@ -2611,7 +2643,7 @@ msgid "Create PHP Code"
msgstr "PHP کوڈ بنائیں"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "تازہ کریں"
@@ -2632,7 +2664,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ان لائن"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "تفصیلات"
@@ -2739,7 +2771,7 @@ msgstr "انتخاب کے لیے کلک کریں"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5301,8 +5333,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:270
@@ -5499,7 +5531,7 @@ msgstr ""
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5563,7 +5595,7 @@ msgid "The row has been deleted"
msgstr ""
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr ""
@@ -5579,7 +5611,7 @@ msgstr ""
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -5652,7 +5684,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr ""
@@ -5995,8 +6027,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6093,28 +6125,28 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr ""
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr ""
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr ""
@@ -6309,49 +6341,49 @@ msgid "Generated by"
msgstr ""
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "کوائف نہیں ملا برائے %s"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "صرف ساخت"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr ""
@@ -6797,14 +6829,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr ""
@@ -7020,7 +7052,7 @@ msgid "Returns"
msgstr "عمل"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "وقت"
@@ -7497,12 +7529,12 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr ""
@@ -7557,11 +7589,11 @@ msgstr ""
msgid "Columns"
msgstr "آراء-رائے"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr ""
@@ -7911,7 +7943,7 @@ msgstr ""
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr ""
@@ -8345,17 +8377,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr ""
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr ""
@@ -8733,8 +8765,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1851
@@ -8856,7 +8888,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr ""
@@ -8993,132 +9025,132 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr ""
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr ""
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr ""
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr ""
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr ""
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr ""
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr ""
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr ""
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr ""
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr ""
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr ""
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr ""
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "تازہ کریں"
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr ""
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show only alert values"
msgstr "بائیں جھروکہ میں علامت دکھائیں"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show unformatted values"
msgstr "بائیں جھروکہ میں علامت دکھائیں"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Replication"
msgid "Related links:"
msgstr "لپیٹنا"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Gather errors"
msgid "Run analyzer"
msgstr "نقائص اکھٹی کریں"
-#: server_status.php:759
+#: server_status.php:801
msgid "Instructions"
msgstr ""
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9133,129 +9165,129 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "ابتدائیہ صفحہ کی تخصیص کریں"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr ""
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr ""
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr ""
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr ""
-#: server_status.php:942
+#: server_status.php:984
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:948
+#: server_status.php:990
msgid "Received"
msgstr ""
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr ""
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr ""
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "حکم"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1138
+#: server_status.php:1180
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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9263,78 +9295,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1150
+#: server_status.php:1192
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:1151
+#: server_status.php:1193
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:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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:1154
+#: server_status.php:1196
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:1155
+#: server_status.php:1197
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 "
@@ -9342,7 +9374,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9350,42 +9382,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1164
+#: server_status.php:1206
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:1165
+#: server_status.php:1207
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 "
@@ -9393,33 +9425,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1167
+#: server_status.php:1209
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:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9428,227 +9460,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1191
+#: server_status.php:1233
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:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1207
+#: server_status.php:1249
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:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1210
+#: server_status.php:1252
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:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9656,99 +9688,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1226
+#: server_status.php:1268
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:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1228
+#: server_status.php:1270
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:1229
+#: server_status.php:1271
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:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1236
+#: server_status.php:1278
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:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9756,18 +9788,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1242
+#: server_status.php:1284
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:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9775,66 +9807,66 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Startup"
msgid "Start Monitor"
msgstr "ابتدائیہ"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add chart"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "تازہ کریں"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "طے شدہ قدر بحال کریں"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9843,7 +9875,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9851,7 +9883,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9863,7 +9895,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Gather errors"
msgid "Query analyzer"
msgstr "نقائص اکھٹی کریں"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -9972,7 +9998,7 @@ msgid_plural "%d seconds"
msgstr[0] "سیکنڈ"
msgstr[1] "سیکنڈ"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10381,34 +10407,34 @@ msgstr ""
msgid "Browse foreign values"
msgstr ""
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr ""
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr ""
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr ""
@@ -11172,9 +11198,9 @@ msgid "Current amount of Questions: %s"
msgstr ""
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "SQL طلب"
#: po/advisory_rules.php:16
@@ -11196,7 +11222,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Show query box"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "طلب خانہ دکھائیں"
#: po/advisory_rules.php:21
@@ -11377,10 +11403,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-msgid "memcached usage"
-msgstr ""
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11437,8 +11459,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11541,8 +11563,7 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, php-format
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11558,12 +11579,12 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
+msgid "Rate of sorts that cause temporary tables"
msgstr ""
#: po/advisory_rules.php:113
@@ -11596,8 +11617,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "Rate of joins without indexes"
+msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11617,7 +11640,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11640,7 +11663,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11649,7 +11672,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11662,7 +11685,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -11671,8 +11694,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11703,11 +11726,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s جدول"
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11734,8 +11754,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s جدول"
#: po/advisory_rules.php:152
msgid ""
@@ -11774,7 +11797,7 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
+msgid "Max % MyISAM key buffer ever used"
msgstr ""
#: po/advisory_rules.php:161 po/advisory_rules.php:166
@@ -11795,7 +11818,7 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
+msgid "Percentage of MyISAM key buffer used"
msgstr ""
#: po/advisory_rules.php:168
@@ -11804,7 +11827,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11824,7 +11847,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create Table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "جدول بنائیں"
#: po/advisory_rules.php:176
@@ -11843,10 +11866,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Could not open file: %s"
-msgid "% open files"
-msgstr "مسل نہیں کھول سکتا: %s"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "درآمد مسل کی وضع"
#: po/advisory_rules.php:181
msgid ""
@@ -11869,7 +11892,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "درآمد مسل کی وضع"
#: po/advisory_rules.php:186
@@ -11908,7 +11931,7 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:200
-msgid "thread cache"
+msgid "Thread cache"
msgstr ""
#: po/advisory_rules.php:201
@@ -11926,8 +11949,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "کھوج غیر فعال ہے۔"
#: po/advisory_rules.php:206
#, fuzzy
@@ -11983,10 +12008,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "PBMS connection failed:"
-msgid "% connections used"
-msgstr "PBMS جڑت ناکام ہوا:"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "بہتر جوڑ"
#: po/advisory_rules.php:221
msgid ""
@@ -12009,9 +12034,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "جڑنے کو سکیڑیں"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "بہتر جوڑ"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -12033,7 +12058,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "بہتر جوڑ"
#: po/advisory_rules.php:231
@@ -12047,8 +12072,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "درآمد مسل کی وضع"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -12069,7 +12096,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "درآمد مسل کی وضع"
#: po/advisory_rules.php:243
@@ -12096,7 +12123,7 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
+msgid "InnoDB log size"
msgstr ""
#: po/advisory_rules.php:251
@@ -12203,6 +12230,18 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "مسل نہیں کھول سکتا: %s"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "PBMS جڑت ناکام ہوا:"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "جڑنے کو سکیڑیں"
+
#, fuzzy
#~ msgctxt "PDF"
#~ msgid "page"
diff --git a/po/uz.po b/po/uz.po
index aa7522e569..6498f1f789 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Барчасини кўрсатиш"
@@ -46,7 +46,7 @@ msgstr "Қидириш"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "Индекс номи"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Тавсифи"
@@ -202,7 +202,7 @@ msgstr "Алоқалар"
msgid "Comments"
msgstr "Изоҳлар"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -213,12 +213,12 @@ msgstr "Изоҳлар"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Йўқ"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -234,7 +234,7 @@ msgstr "Йўқ"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -366,7 +366,7 @@ msgstr "Алоқалар схемаси"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -639,8 +639,8 @@ msgstr "Кузатиш фаол эмас."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@@ -652,7 +652,7 @@ msgstr "Намойиш"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Репликация (захира нусха кўчириш)"
@@ -694,7 +694,7 @@ msgstr "Оптималлаштириш лозим бўлгн жадваллар
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспорт"
@@ -762,10 +762,10 @@ msgstr "Кузатилган жадваллар"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -785,7 +785,7 @@ msgstr "Янгиланди"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Ҳолат"
@@ -884,11 +884,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
-"sдокументацияда%s келтирилган."
+"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
+"%sдокументацияда%s келтирилган."
#: import.php:277 import.php:330 libraries/File.class.php:456
#: libraries/File.class.php:539
@@ -932,7 +932,7 @@ msgstr "Хатчўп ўчирилди."
msgid "Showing bookmark"
msgstr "Хатчўпларни кўрсатиш"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" хатчўпи тузилди"
@@ -986,15 +986,15 @@ msgstr "Танлаш учун сичқонча тугмасини босинг"
msgid "Click to unselect"
msgstr "Танлашни бекор қилиш учун сичқонча тугмасини босинг"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
@@ -1085,12 +1085,12 @@ msgstr "Привилегиялар қайта юкланмоқда"
msgid "Removing Selected Users"
msgstr "Белгиланган фойдаланувчиларни ўчириш"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Ёпиш"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1098,17 +1098,17 @@ msgstr "Ёпиш"
msgid "Edit"
msgstr "Таҳрирлаш"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Серверни танланг"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1121,13 +1121,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Жами"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1159,7 +1159,7 @@ msgstr "Серверни танланг"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Жараёнлар"
@@ -1179,174 +1179,206 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
msgstr "Статискани кўрсатиш"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "Сўровлар кеши"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "Сўровлар кеши"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "Сўровлар кеши"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "КБ"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Журнал файллари сони"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Буфер пули"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Жами"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Бўш саҳифалар сони "
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Қабул қилинди"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Уланишлар"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Версиялар"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "settings"
msgid "Settings"
msgstr "танловлар"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "Тўрга боғлаб қўйиш"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Йўқ"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1354,400 +1386,400 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "Фаоллаштирилган"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Фаолсизлантириш"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Бошқа созланишлар"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "settings"
msgid "Current settings"
msgstr "танловлар"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Ҳисобот сарлавҳаси"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Фарқ"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Go to database"
msgid "Jump to Log table"
msgstr "Ушбу базага ўтиш"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Фильтр"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Фильтр"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Қўйилган қаторлар сони"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Жами"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Load"
msgid "Loading logs"
msgstr "Юклаш"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Қайта юклаш"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Импорт"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "Сўровни янгилаш"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Документация"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Тафсилотлар..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Customization"
msgid "Justification"
msgstr "Мослашлар"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Бекор қилиш"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "Юклаш"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Жараёнлар"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кодировка"
-#: js/messages.php:216
+#: js/messages.php:223
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт."
-#: js/messages.php:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Жадвал тузиш"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Жадвалларни ишлатиш"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
msgstr "Индекс(лар)ни сақлаш"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Тўрни кўрсатиш"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Қидириш"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search results"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search results"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Кўриб чиқиш"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "\"%s\" ўчирилмоқда"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. "
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "Ўзгартириш"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Максимум бажарилиш вақти"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1755,114 +1787,114 @@ msgstr "Максимум бажарилиш вақти"
msgid "Save"
msgstr "Сақлаш"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "Эътибор бермаслик"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Устун(лар) қўшиш"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Боғлиқ калитни танланг"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Ташқи калитни танланг"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Кўрсатиладиган майдонни танлаш"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Танлаш учун сичқонча тугмасини босинг"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Парол ўрнатиш"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генерация қилиш"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Паролни ўзгартириш"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Душ"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1873,33 +1905,33 @@ msgstr ""
"чиқарилган."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Охирги версияни текшириш"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ушбу базага ўтиш"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Садақа"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Орқага"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1907,96 +1939,96 @@ msgid "Next"
msgstr "Кейинги"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Жами"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Иккилик"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Мар"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Апр"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "Май"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Июн"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Июл"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Авг"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Окт"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2004,78 +2036,78 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Якш"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Душ"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Сеш"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Жум"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2083,102 +2115,102 @@ msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Шан"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Якш"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Душ"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Сеш"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Чор"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пай"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Жум"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Шан"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Вики"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ишлатилмоқда"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2447,8 +2479,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@@ -2595,7 +2627,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Жадваллар"
@@ -2684,7 +2716,7 @@ msgstr ""
"файлида белгиланган созлашларни тўғирланг."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Сервер"
@@ -2734,7 +2766,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL сўрови"
@@ -2774,7 +2806,7 @@ msgid "Create PHP Code"
msgstr "PHP-код"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Янгилаш"
@@ -2797,7 +2829,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Жадвал турлари"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Профиллаштириш"
@@ -2908,7 +2940,7 @@ msgstr "Танлаш учун сичқонча тугмасини босинг"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -4768,8 +4800,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
-"\"pma_pdf_pages\"[/kbd]"
+"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
+"[kbd]\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:405
msgid "PDF schema: pages table"
@@ -4877,8 +4909,8 @@ msgstr "SSL уланишдан фойдаланиш"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
-"\"pma_table_coords\"[/kbd]"
+"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
+"[kbd]\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:424
msgid "PDF schema: table coordinates"
@@ -5735,12 +5767,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
-"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
-"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
+"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
+"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:270
msgid "use this for future exports"
@@ -5975,7 +6007,7 @@ msgstr "Индекс бўйича сортировка қилиш"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -6045,7 +6077,7 @@ msgid "The row has been deleted"
msgstr "Ёзув ўчирилди"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Тугатиш"
@@ -6061,7 +6093,7 @@ msgstr "Ёзувларни кўрсатиш"
msgid "total"
msgstr "жами"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "Сўров %01.4f секунд вақт олди"
@@ -6138,7 +6170,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буфер пули"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB аҳволи"
@@ -6534,8 +6566,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6654,28 +6686,28 @@ msgid "Display MIME types"
msgstr "Мавжуд MIME турлари"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Тузилган сана "
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Сервер версияси"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP версиясм"
@@ -6875,55 +6907,55 @@ msgid "Generated by"
msgstr "Тузилган"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни "
"бажаришингиз мумкин:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Ушбу базага ўтиш"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "\"%s\" майдонида маълумот йўқ"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Ушбу жадвалга ўтиш"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Фақат тузилиши"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Ушбу кўринишга ўтиш"
@@ -7399,14 +7431,14 @@ msgid "Slave status"
msgstr "Тобе сервер статуси"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "Ўзгарувчи"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Қиймати"
@@ -7632,7 +7664,7 @@ msgid "Returns"
msgstr "Қайтариладиган тип"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Вақт"
@@ -8134,12 +8166,12 @@ msgid "Synchronize"
msgstr "Синхронизация қилиш"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Иккилик журнал"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "Ўзгарувчилар"
@@ -8194,11 +8226,11 @@ msgstr "Тозалаш"
msgid "Columns"
msgstr "Майдон номлари"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Ушбу SQL сўровига хатчўп тузиш"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Барча фойдаланувчиларга рухсат бериш"
@@ -8673,7 +8705,7 @@ msgstr "Протокол версияси"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Фойдаланувчи"
@@ -9177,17 +9209,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!"
msgid "Select binary log to view"
msgstr "Кўриш учун бинар журнални танланг"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Файллар сони "
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "Сўровларни қисқартириб кўрсатиш"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "Сўровларнинг кенгайтирилган кўриниши"
@@ -9591,8 +9623,8 @@ msgstr "Фойдаланувчилар номлари билан аталган
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@@ -9730,7 +9762,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга
msgid "This server is configured as master in a replication process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Уланган бош серверларни кўрсатиш"
@@ -9891,138 +9923,138 @@ msgstr ""
"Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация "
"қилинмаган. Сиз уни конфигурация қилмоқчимисиз?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "\"%s\" жараёни муваффақиятли якунланди."
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ."
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "Қайта ишловчи дастур"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "Сўровлар кеши"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Оқимлар"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Вақтинчалик маълумотлар"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Кечиктирилган қўйилмалар"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Индекс кеши"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Бирлашишлар"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Транзакциялар координатори"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Барча жадвалларни ёпиш"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Тобе серверлар ҳақида маълумот"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Репликация сервери аҳволи ҳақида маълумот"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "Сўровлар кешини дефрагментация қилиш"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "MySQL-сервернинг ҳозирги ҳолати"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Тобе сервер статуси жадвалини кўриш"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Янгилаш"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Паролни ўзгартирмаслик"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Алоқалар"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Сўров тури"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функциялар"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -10037,46 +10069,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Бошланғич саҳифани созлаш"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "соатига"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "минутига"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "секундига"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Тавсиф"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -10084,19 +10116,19 @@ msgid ""
"b> process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_status.php:911
+#: server_status.php:953
#, 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:913
+#: server_status.php:955
#, 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:916
+#: server_status.php:958
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -10110,11 +10142,11 @@ msgstr ""
"сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот "
"учун, <a href=\"#replication\">репликация бўлими</a>га киринг."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Репликация статуси"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10122,47 +10154,47 @@ msgstr ""
"Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг "
"учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Қабул қилинди"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Юборилди"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Максимал уланишлар сони "
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Муваффақиятсиз уринишлар сони: "
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Узилди"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Буйруқ"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -10171,16 +10203,16 @@ msgstr ""
"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз "
"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони."
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Бинар журнал кешини ишлатган транзакциялар сони."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -10193,11 +10225,11 @@ msgstr ""
"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини "
"ошириш тавсия этилади."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10205,7 +10237,7 @@ msgstr ""
"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик "
"тузилган вақтинчалик жадваллар сони."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10213,31 +10245,31 @@ msgstr ""
"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар "
"(масалан, калитлар такрорланиши оқибатида) сони."
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган "
"қаторлар сони."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Бажарилган \"FLUSH\" буйруқлар сони."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Ички \"COMMIT\" буйруқлари сони."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -10247,7 +10279,7 @@ msgstr ""
"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган "
"жадваллар сони."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -10256,7 +10288,7 @@ msgstr ""
"Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати "
"катта бўлса, сервер бир неча маротиба индексни кўриб чиқади."
-#: server_status.php:1152
+#: server_status.php:1194
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."
@@ -10265,7 +10297,7 @@ msgstr ""
"Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан "
"далолат беради."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -10275,7 +10307,7 @@ msgstr ""
"Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш "
"вақтида ўзгарувчи қиймати ошади."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10284,7 +10316,7 @@ msgstr ""
"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... "
"DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -10297,7 +10329,7 @@ msgstr ""
"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри "
"фойдаланадиган бирлашмаларнинг мавжудлиги."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -10309,35 +10341,35 @@ msgstr ""
"индексланганлигини ёки сўровлар индексларнинг афзалликларидан "
"фойдаланмаётганлигини билдиради."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "ROLLBACK ички буйруқлар сони."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони."
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони."
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "\"Кир\" саҳифаларнинг жорий сони."
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони."
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Бўш саҳифалар сони."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -10347,7 +10379,7 @@ msgstr ""
"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра "
"тозалаш ёки ўчириш имконияти йўқ."
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -10359,11 +10391,11 @@ msgstr ""
"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data\"."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10372,7 +10404,7 @@ msgstr ""
"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй "
"беради."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10381,12 +10413,12 @@ msgstr ""
"сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй "
"беради"
-#: server_status.php:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr ""
"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони."
-#: server_status.php:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10394,7 +10426,7 @@ msgstr ""
"InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга "
"бўлган кетма-кет сўровлар сони."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -10407,51 +10439,51 @@ msgstr ""
"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми "
"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Тугалланмаган \"fsync()\" операциялари сони."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Тугалланмаган ўқиш операциялари сони."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Тугалланмаган ёзиш операциялари сони."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Умумий маълумотларни ўқиш операциялари сони."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Умумий маълумотларни ёзиш операциялари сони."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Бажарилган \"doublewrite\" операциялари сони."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -10459,35 +10491,35 @@ msgstr ""
"Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган "
"ёзувлар сони"
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Журналга ёзишга бўлган сўровларсони."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Журнал файлидаги жисмоний ёзувлар сони."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Тугалланмаган журналга ёзиш сўровлари сони."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Тузилган саҳифалар сони."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10496,51 +10528,51 @@ msgstr ""
"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, "
"уларни байтларга ўтказиш мумкин."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "Ўқилган саҳифалар сони."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Ёзилган саҳифалар сони."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Ҳозирда кутилаётган қатор блокировкалари сони."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Умумий кутилаётган қатор блокировкалари сони."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB жадвалидан ўчирилган қаторлар сони."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB жадвалига ёзилган қаторлар сони."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB жадвалларидан ўқилган қаторлар сони."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB жадвалларида янгиланган қаторлар сони."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10548,7 +10580,7 @@ msgstr ""
"Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. "
"Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум."
-#: server_status.php:1204
+#: server_status.php:1246
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."
@@ -10556,7 +10588,7 @@ msgstr ""
"Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши "
"ишлатилиш даражасини белгилайди."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -10565,11 +10597,11 @@ msgstr ""
"Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида "
"ишлатилиши мумкин бўлган блоклар сонини билдиради."
-#: server_status.php:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони."
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -10580,15 +10612,15 @@ msgstr ""
"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти "
"қуйидагича ҳисобланди: Key_reads/Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони."
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10599,19 +10631,19 @@ msgstr ""
"эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров "
"компиляция жараёни бажарилмаганлигини билдиради."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" "
"сўровларида қўйилишини кутаётган қаторлар сони."
-#: server_status.php:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10619,42 +10651,42 @@ msgstr ""
"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта "
"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Очиқ файллар сони."
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
-"\" функцияси ёрдамида очилган файлга айтилади."
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
+"()\" функцияси ёрдамида очилган файлга айтилади."
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Очиқ жадваллар сони."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "Сўровлар кеши учун бўш хотира ҳажми"
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr ""
"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан "
"қониқтирилган сўровлар сони."
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "Сўровлар кешига қўшилган сўровлар сони."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10666,7 +10698,7 @@ msgstr ""
"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги "
"ишлатилган) стратегиясидан фойдаланади"
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10674,19 +10706,19 @@ msgstr ""
"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида "
"сўндирилган сўровлар сони."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Кешда регистрация қилинган сўровлар сони."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10694,13 +10726,13 @@ msgstr ""
"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати "
"0 бўлмаса, жадвал индексларини текшириш тавсия этилади."
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда "
"бажарилган бирлашма сўровлар сони."
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -10709,7 +10741,7 @@ msgstr ""
"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 "
"бўлмаса, жадвал индексларини текшириш тавсия этилади."
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10718,17 +10750,17 @@ msgstr ""
"сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса "
"ҳам, унчалик муҳим эмас."
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган "
"бирлашма сўровлар сони."
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони."
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10736,13 +10768,13 @@ msgstr ""
"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта "
"транзакцияларнинг умумий сони."
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган "
"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади."
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10750,12 +10782,12 @@ msgstr ""
"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар "
"сони."
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони."
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -10765,25 +10797,25 @@ msgstr ""
"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш "
"зарур."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Сортировка қилинган қаторлар сони"
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr ""
"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари "
"сони."
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони."
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -10795,7 +10827,7 @@ msgstr ""
"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал"
"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10806,11 +10838,11 @@ msgstr ""
"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" "
"ўзгарувчисининг қийматини ошириш зарур."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Очиқ жорий уланишлар сони."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10822,68 +10854,68 @@ msgstr ""
"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам "
"оширмайди)."
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Фаол ҳолатда бўлган жараёнлар сони."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Бошлаш"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Индекс(лар)ни сақлаш"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Янгилаш"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR майдонидаги устунлар сони"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Хатоликларни бошқариш:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Асл қийматларни тиклаш"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10892,7 +10924,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10900,7 +10932,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10912,7 +10944,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Сўров тури"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "секундига"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11472,9 +11494,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11548,36 +11570,36 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус
msgid "Browse foreign values"
msgstr "Ташқи қийматларни кўриб чиқиш"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Киритилган қатор идентификатори: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP-код сифатида кўрсатиш"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL-сўровни кўрсатиш"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL тўғрилигини текшириш"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Хатчўп белгиси"
@@ -12388,9 +12410,9 @@ msgid "Current amount of Questions: %s"
msgstr "Нохавфсиз уланиш"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Show SQL сўровларини кўрсатиш"
#: po/advisory_rules.php:16
@@ -12412,7 +12434,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "Сўровлар кешини дефрагментация қилиш"
#: po/advisory_rules.php:21
@@ -12597,12 +12619,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Фойдаланилаётган жой"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12659,8 +12675,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12769,9 +12785,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12789,13 +12805,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
#: po/advisory_rules.php:113
#, php-format
@@ -12827,8 +12845,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "Rate of joins without indexes"
+msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12848,7 +12868,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12871,7 +12891,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12880,7 +12900,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12893,7 +12913,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12902,8 +12922,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12934,10 +12954,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "Жадваллар сони: \"%s\""
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -12964,8 +12982,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "Жадваллар сони: \"%s\""
#: po/advisory_rules.php:152
msgid ""
@@ -13006,8 +13026,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Сортировка буфери ҳажми"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -13027,8 +13049,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Сортировка буфери ҳажми"
#: po/advisory_rules.php:168
#, php-format
@@ -13036,7 +13060,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -13056,7 +13080,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Жадвал тузиш"
#: po/advisory_rules.php:176
@@ -13077,10 +13101,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Очиқ жадваллар рўйхати"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Импорт қилинаётган файл формати"
#: po/advisory_rules.php:181
msgid ""
@@ -13103,7 +13127,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Импорт қилинаётган файл формати"
#: po/advisory_rules.php:186
@@ -13150,7 +13174,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Индекс кеши"
#: po/advisory_rules.php:201
@@ -13168,8 +13192,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Кузатиш фаол эмас."
#: po/advisory_rules.php:206
#, fuzzy
@@ -13227,10 +13253,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Уланишлар"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Доимий уланишлар"
#: po/advisory_rules.php:221
msgid ""
@@ -13253,9 +13279,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Уланишни қисиш"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Доимий уланишлар"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -13277,7 +13303,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Доимий уланишлар"
#: po/advisory_rules.php:231
@@ -13291,8 +13317,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Импорт қилинаётган файл формати"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -13313,7 +13341,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Импорт қилинаётган файл формати"
#: po/advisory_rules.php:243
@@ -13340,8 +13368,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Буфер пули ҳажми"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13453,6 +13483,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Фойдаланилаётган жой"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Очиқ жадваллар рўйхати"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Уланишлар"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Уланишни қисиш"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Ишлатилиш"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Ишлатилиш"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS иш китоби"
@@ -13602,8 +13656,8 @@ msgstr ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]"
-#~ "\"FAQ 3.11\"[/a]га қаранг"
+#~ "Тахминий бўлиши мумкин. [a@./Documentation."
+#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг"
#~ msgid "Bar type"
#~ msgstr "Сўров тури"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 79cc298901..1a45f3c0a2 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
+"Language: uz@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: Pootle 2.0.1\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "Barchasini ko‘rsatish"
@@ -47,7 +47,7 @@ msgstr "Qidirish"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -88,7 +88,7 @@ msgstr "Indeks nomi"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "Tavsifi"
@@ -203,7 +203,7 @@ msgstr "Aloqalar"
msgid "Comments"
msgstr "Izohlar"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -214,12 +214,12 @@ msgstr "Izohlar"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "Yo‘q"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -235,7 +235,7 @@ msgstr "Yo‘q"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -367,7 +367,7 @@ msgstr "Aloqalar sxemasi"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -641,8 +641,8 @@ msgstr "Kuzatish faol emas."
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@@ -654,7 +654,7 @@ msgstr "Namoyish"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
@@ -696,7 +696,7 @@ msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
@@ -764,10 +764,10 @@ msgstr "Kuzatilgan jadvallar"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -787,7 +787,7 @@ msgstr "Yangilandi"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "Holat"
@@ -886,8 +886,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@@ -934,7 +934,7 @@ msgstr "Xatcho‘p o‘chirildi."
msgid "Showing bookmark"
msgstr "Xatcho‘plarni ko‘rsatish"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" xatcho‘pi tuzildi"
@@ -989,16 +989,16 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing"
msgid "Click to unselect"
msgstr "Tanlashni bеkor qilish uchun sichqoncha tugmasini bosing"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
"\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan."
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
@@ -1090,12 +1090,12 @@ msgstr "Privilegiyalar qayta yuklanmoqda"
msgid "Removing Selected Users"
msgstr "Belgilangan foydalanuvchilarni o‘chirish"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "Yopish"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1103,17 +1103,17 @@ msgstr "Yopish"
msgid "Edit"
msgstr "Tahrirlash"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Serverni tanlang"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1126,13 +1126,13 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "Jami"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr ""
@@ -1164,7 +1164,7 @@ msgstr "Serverni tanlang"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "Jarayonlar"
@@ -1184,174 +1184,206 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
msgstr "Statiskani ko‘rsatish"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "So‘rovlar keshi"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "So‘rovlar keshi"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "So‘rovlar keshi"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Log file count"
msgid "Total memory"
msgstr "Jurnal fayllari soni"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "Bufer puli"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "Jami"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "Bo‘sh sahifalar soni "
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "Qabul qilindi"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "Ulanishlar"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "Vеrsiyalar"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
#, fuzzy
#| msgid "settings"
msgid "Settings"
msgstr "tanlovlar"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Rename database to"
msgid "Remove chart"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "To‘rga bog‘lab qo‘yish"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "Yo‘q"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1359,401 +1391,401 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, 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:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disable"
msgid "Disable %s"
msgstr "Faolsizlantirish"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Other core settings"
msgid "Change settings"
msgstr "Boshqa sozlanishlar"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "settings"
msgid "Current settings"
msgstr "tanlovlar"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
msgstr "Hisobot sarlavhasi"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "Farq"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Go to database"
msgid "Jump to Log table"
msgstr "Ushbu bazaga o‘tish"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filtr"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "Filtr"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "Qo‘yilgan qatorlar soni"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "Jami"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Load"
msgid "Loading logs"
msgstr "Yuklash"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "Qayta yuklash"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "Import"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "So‘rovni yangilash"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "Dokumentatsiya"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "Tafsilotlar..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Customization"
msgid "Justification"
msgstr "Moslashlar"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "Bekor qilish"
-#: js/messages.php:204
+#: js/messages.php:211
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "Yuklash"
-#: js/messages.php:205
+#: js/messages.php:212
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Jarayonlar"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:212
+#: js/messages.php:219
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: js/messages.php:213
+#: js/messages.php:220
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: js/messages.php:214
+#: js/messages.php:221
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
-#: js/messages.php:215
+#: js/messages.php:222
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kodirovka"
-#: js/messages.php:216
+#: js/messages.php:223
#, 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:217
+#: js/messages.php:224
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Jadval tuzish"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Jadvallarni ishlatish"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
msgstr "Indеks(lar)ni saqlash"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "To‘rni ko‘rsatish"
-#: js/messages.php:227
+#: js/messages.php:234
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Qidirish"
-#: js/messages.php:228
+#: js/messages.php:235
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search results"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:229
+#: js/messages.php:236
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search results"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:230
+#: js/messages.php:237
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Ko‘rib chiqish"
-#: js/messages.php:231
+#: js/messages.php:238
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "\"%s\" o‘chirilmoqda"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:241
+#: js/messages.php:248
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr ""
"Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak. "
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "O‘zgartirish"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "Maksimum bajarilish vaqti"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1761,115 +1793,115 @@ msgstr "Maksimum bajarilish vaqti"
msgid "Save"
msgstr "Saqlash"
-#: js/messages.php:251
+#: js/messages.php:258
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:252
+#: js/messages.php:259
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "E`tibor bermaslik"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Ustun(lar) qo‘shish"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "Bog‘liq kalitni tanlang"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "Tashqi kalitni tanlang"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr ""
"Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Ko‘rsatiladigan maydonni tanlash"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Tanlash uchun sichqoncha tugmasini bosing"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Parol o‘rnatish"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generatsiya qilish"
-#: js/messages.php:283
+#: js/messages.php:290
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolni o‘zgartirish"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dush"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1880,33 +1912,33 @@ msgstr ""
"sanada chiqarilgan."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Oxirgi versiyani tekshirish"
-#: js/messages.php:292
+#: js/messages.php:299
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ushbu bazaga o‘tish"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Sadaqa"
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Orqaga"
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1914,96 +1946,96 @@ msgid "Next"
msgstr "Keyingi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jami"
-#: js/messages.php:326
+#: js/messages.php:333
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Ikkilik"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr ""
-#: js/messages.php:328
+#: js/messages.php:335
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:329
+#: js/messages.php:336
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "May"
-#: js/messages.php:331
+#: js/messages.php:338
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Iyun"
-#: js/messages.php:332
+#: js/messages.php:339
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Iyul"
-#: js/messages.php:333
+#: js/messages.php:340
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avg"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr ""
-#: js/messages.php:335
+#: js/messages.php:342
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr ""
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2011,78 +2043,78 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:366
+#: js/messages.php:373
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Yaksh"
-#: js/messages.php:367
+#: js/messages.php:374
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dush"
-#: js/messages.php:368
+#: js/messages.php:375
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sesh"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr ""
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr ""
-#: js/messages.php:371
+#: js/messages.php:378
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2090,102 +2122,102 @@ msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "Shan"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Yaksh"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dush"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sesh"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Chor"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pay"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Shan"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Viki"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr ""
-#: js/messages.php:409
+#: js/messages.php:416
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ishlatilmoqda"
-#: js/messages.php:410
+#: js/messages.php:417
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2454,8 +2486,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@@ -2602,7 +2634,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "Jadvallar"
@@ -2691,7 +2723,7 @@ msgstr ""
"konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "Server"
@@ -2742,7 +2774,7 @@ msgid "Documentation"
msgstr "Dokumentatsiya"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL so‘rovi"
@@ -2782,7 +2814,7 @@ msgid "Create PHP Code"
msgstr "PHP-kod"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "Yangilash"
@@ -2805,7 +2837,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Jadval turlari"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "Profillashtirish"
@@ -2916,7 +2948,7 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -4691,9 +4723,9 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
-"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
-"larga qarang"
+"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
+"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
+"com/19588]\"MySQL Bugs\"[/a]larga qarang"
#: libraries/config/messages.inc.php:388
msgid "Disable use of INFORMATION_SCHEMA"
@@ -4783,8 +4815,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
-"\"pma_pdf_pages\"[/kbd]"
+"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
+"[kbd]\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:405
msgid "PDF schema: pages table"
@@ -4798,8 +4830,8 @@ msgid ""
msgstr ""
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
-"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
-"\"phpmyadmin\"[/kbd]"
+"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
+"[kbd]\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:407
#, fuzzy
@@ -4892,8 +4924,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
-"\"pma_table_coords\"[/kbd]"
+"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
+"[kbd]\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:424
msgid "PDF schema: table coordinates"
@@ -5552,8 +5584,8 @@ msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
-"\"FAQ 3.11\"[/a]ga qarang"
+"Taxminiy bo‘lishi mumkin. [a@./Documentation."
+"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
#: libraries/dbi/mysql.dbi.lib.php:117 libraries/dbi/mysqli.dbi.lib.php:137
msgid "Connection for controluser as defined in your configuration failed."
@@ -5756,8 +5788,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
@@ -5997,7 +6029,7 @@ msgstr "Indeks bo‘yicha sortirovka qilish"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -6067,7 +6099,7 @@ msgid "The row has been deleted"
msgstr "Yozuv o‘chirildi"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "Tugatish"
@@ -6083,7 +6115,7 @@ msgstr "Yozuvlarni ko‘rsatish"
msgid "total"
msgstr "jami"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "So‘rov %01.4f sekund vaqt oldi"
@@ -6161,7 +6193,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer puli"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB ahvoli"
@@ -6559,8 +6591,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6679,28 +6711,28 @@ msgid "Display MIME types"
msgstr "Mavjud MIME turlari"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "Xost"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "Tuzilgan sana "
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "Server versiyasi"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP versiyasm"
@@ -6901,55 +6933,55 @@ msgid "Generated by"
msgstr "Tuzilgan"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)."
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi "
"amallarni bajarishingiz mumkin:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "Ushbu bazaga o‘tish"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "\"%s\" maydonida ma`lumot yo‘q"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "Ushbu jadvalga o‘tish"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "Faqat tuzilishi"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "Ushbu ko‘rinishga o‘tish"
@@ -7428,14 +7460,14 @@ msgid "Slave status"
msgstr "Tobе rеplikatsiya sеrvеri statusi"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "O‘zgaruvchi"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "Qiymati"
@@ -7661,7 +7693,7 @@ msgid "Returns"
msgstr "Qaytariladigan tip"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "Vaqt"
@@ -8163,12 +8195,12 @@ msgid "Synchronize"
msgstr "Sinxronizatsiya qilish"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "Ikkilik jurnal"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "O‘zgaruvchilar"
@@ -8223,11 +8255,11 @@ msgstr "Tozalash"
msgid "Columns"
msgstr "Maydon nomlari"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "Barcha foydalanuvchilarga ruxsat berish"
@@ -8707,7 +8739,7 @@ msgstr "Protokol versiyasi"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "Foydalanuvchi"
@@ -9214,17 +9246,17 @@ msgstr "\"%s\" jadvali mavjud emas!"
msgid "Select binary log to view"
msgstr "Ko‘rish uchun binar jurnalni tanlang"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "Fayllar soni "
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "So‘rovlarni qisqartirib ko‘rsatish"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "So‘rovlarning kengaytirilgan ko‘rinishi"
@@ -9634,8 +9666,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@@ -9775,7 +9807,7 @@ 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:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish"
@@ -9937,139 +9969,139 @@ msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya "
"qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi."
-#: server_status.php:369
+#: server_status.php:414
#, 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:490
+#: server_status.php:535
msgid "Handler"
msgstr "Qayta ishlovchi dastur"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "So‘rovlar keshi"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "Oqimlar"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "Vaqtinchalik ma`lumotlar"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "Kechiktirilgan qo‘yilmalar"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "Indeks keshi"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "Birlashishlar"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "Sortirovka"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "Tranzaksiyalar koordinatori"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "Barcha jadvallarni yopish"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "Tobe serverlar haqida ma`lumot"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "Replikatsiya serveri ahvoli haqida ma`lumot"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "So‘rovlar keshini defragmentatsiya qilish"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "MySQL-serverning hozirgi holati"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Tobе sеrvеr statusi jadvalini ko‘rish"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Yangilash"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Parolni o‘zgartirmaslik"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Aloqalar"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "So‘rov turi"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funksiyalar"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -10084,47 +10116,47 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Boshlang‘ich sahifani sozlash"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "soatiga"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "minutiga"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "sekundiga"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "Tavsif"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -10133,21 +10165,21 @@ msgid ""
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_status.php:911
+#: server_status.php:953
#, 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:913
+#: server_status.php:955
#, 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:916
+#: server_status.php:958
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -10162,11 +10194,11 @@ msgstr ""
"uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga "
"kiring."
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "Replikatsiya statusi"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10175,47 +10207,47 @@ msgstr ""
"shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi "
"mumkin."
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "Qabul qilindi"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "Yuborildi"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "Maksimal ulanishlar soni "
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "Muvaffaqiyatsiz urinishlar soni: "
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "Uzildi"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "Buyruq"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -10224,16 +10256,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:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni."
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -10246,11 +10278,11 @@ msgstr ""
"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini "
"oshirish tavsiya etiladi."
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni."
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10258,7 +10290,7 @@ msgstr ""
"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik "
"tuzilgan vaqtinchalik jadvallar soni."
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10266,31 +10298,31 @@ msgstr ""
"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar "
"(masalan, kalitlar takrorlanishi oqibatida) soni."
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan "
"qatorlar soni."
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "Bajarilgan \"FLUSH\" buyruqlar soni."
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "Ichki \"COMMIT\" buyruqlari soni."
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni."
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -10300,7 +10332,7 @@ msgstr ""
"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan "
"jadvallar soni."
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -10309,7 +10341,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:1152
+#: server_status.php:1194
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."
@@ -10318,7 +10350,7 @@ msgstr ""
"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri "
"indekslanganidan dalolat beradi."
-#: server_status.php:1153
+#: server_status.php:1195
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 "
@@ -10328,7 +10360,7 @@ msgstr ""
"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib "
"chiqish vaqtida o‘zgaruvchi qiymati oshadi."
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10337,7 +10369,7 @@ msgstr ""
"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun "
"qo‘llaniladi: ORDER BY ... DESC."
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -10351,7 +10383,7 @@ msgstr ""
"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning "
"mavjudligi."
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -10363,35 +10395,35 @@ msgstr ""
"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning "
"afzalliklaridan foydalanmayotganligini bildiradi."
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "ROLLBACK ichki buyruqlar soni."
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni."
-#: server_status.php:1159
+#: server_status.php:1201
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:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")."
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "\"Kir\" sahifalarning joriy soni."
-#: server_status.php:1162
+#: server_status.php:1204
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:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "Bo‘sh sahifalar soni."
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -10401,7 +10433,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:1165
+#: server_status.php:1207
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 "
@@ -10413,11 +10445,11 @@ msgstr ""
"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data\"."
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "Bufer pulining umumiy hajmi (sahifalarda)."
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -10426,7 +10458,7 @@ msgstr ""
"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib "
"chiqayotganda ro‘y beradi."
-#: server_status.php:1168
+#: server_status.php:1210
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10435,12 +10467,12 @@ msgstr ""
"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda "
"ro‘y beradi"
-#: server_status.php:1169
+#: server_status.php:1211
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:1170
+#: server_status.php:1212
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10448,7 +10480,7 @@ msgstr ""
"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan "
"o‘qishga bo‘lgan ketma-ket so‘rovlar soni."
-#: server_status.php:1171
+#: server_status.php:1213
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 "
@@ -10462,51 +10494,51 @@ msgstr ""
"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta "
"bo‘lmasligi kerak."
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni."
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni."
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni."
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "Tugallanmagan o‘qish operatsiyalari soni."
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "Tugallanmagan yozish operatsiyalari soni."
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)."
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni."
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni."
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)."
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni."
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni."
-#: server_status.php:1183
+#: server_status.php:1225
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."
@@ -10514,35 +10546,35 @@ msgstr ""
"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi "
"kutayotgan yozuvlar soni"
-#: server_status.php:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni."
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "Jurnal faylidagi jismoniy yozuvlar soni."
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni."
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni."
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni."
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)."
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "Tuzilgan sahifalar soni."
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -10551,51 +10583,51 @@ msgstr ""
"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, "
"ularni baytlarga o‘tkazish mumkin."
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "O‘qilgan sahifalar soni."
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "Yozilgan sahifalar soni."
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "Hozirda kutilayotgan qator blokirovkalari soni."
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)."
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)."
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)."
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "Umumiy kutilayotgan qator blokirovkalari soni."
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni."
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB jadvaliga yozilgan qatorlar soni."
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni."
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB jadvallarida yangilangan qatorlar soni."
-#: server_status.php:1203
+#: server_status.php:1245
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."
@@ -10603,7 +10635,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:1204
+#: server_status.php:1246
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."
@@ -10611,7 +10643,7 @@ msgstr ""
"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi "
"ishlatilish darajasini belgilaydi."
-#: server_status.php:1205
+#: server_status.php:1247
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 "
@@ -10620,11 +10652,11 @@ msgstr ""
"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning "
"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi."
-#: server_status.php:1206
+#: server_status.php:1248
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:1207
+#: server_status.php:1249
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 "
@@ -10636,15 +10668,15 @@ msgstr ""
"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/"
"Key_read_requests."
-#: server_status.php:1208
+#: server_status.php:1250
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:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni."
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -10655,19 +10687,19 @@ msgstr ""
"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov "
"kompilyatsiya jarayoni bajarilmaganligini bildiradi."
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
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:1213
+#: server_status.php:1255
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10675,42 +10707,42 @@ msgstr ""
"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta "
"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi."
-#: server_status.php:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "Ochiq fayllar soni."
-#: server_status.php:1215
+#: server_status.php:1257
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:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "Ochiq jadvallar soni."
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi"
-#: server_status.php:1219
+#: server_status.php:1261
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:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni."
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -10722,7 +10754,7 @@ msgstr ""
"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least "
"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi"
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10730,19 +10762,19 @@ msgstr ""
"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida "
"so‘ndirilgan so‘rovlar soni."
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "Keshda registratsiya qilingan so‘rovlar soni."
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni."
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)."
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -10750,13 +10782,13 @@ msgstr ""
"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi "
"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi."
-#: server_status.php:1227
+#: server_status.php:1269
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:1228
+#: server_status.php:1270
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.)"
@@ -10766,7 +10798,7 @@ msgstr ""
"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya "
"etiladi."
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10775,17 +10807,17 @@ msgstr ""
"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda "
"katta bo‘lsa ham, unchalik muhim emas."
-#: server_status.php:1230
+#: server_status.php:1272
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:1231
+#: server_status.php:1273
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:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10793,13 +10825,13 @@ msgstr ""
"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan "
"qayta tranzaksiyalarning umumiy soni."
-#: server_status.php:1233
+#: server_status.php:1275
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:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10807,12 +10839,12 @@ msgstr ""
"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan "
"oqimlar soni."
-#: server_status.php:1235
+#: server_status.php:1277
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:1236
+#: server_status.php:1278
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 "
@@ -10822,26 +10854,26 @@ msgstr ""
"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining "
"qiymatini oshirish zarur."
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni."
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "Sortirovka qilingan qatorlar soni"
-#: server_status.php:1239
+#: server_status.php:1281
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:1240
+#: server_status.php:1282
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:1241
+#: server_status.php:1283
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 "
@@ -10854,7 +10886,7 @@ msgstr ""
"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish "
"kerak."
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -10865,11 +10897,11 @@ msgstr ""
"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda "
"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur."
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "Ochiq joriy ulanishlar soni."
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -10881,68 +10913,68 @@ msgstr ""
"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik "
"ham oshirmaydi)."
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "Faol holatda bo‘lgan jarayonlar soni."
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Boshlash"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Indеks(lar)ni saqlash"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "Yangilash"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR maydonidagi ustunlar soni"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Xatoliklarni boshqarish:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Asl qiymatlarni tiklash"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -10951,7 +10983,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10959,7 +10991,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -10971,7 +11003,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.
"
msgstr ""
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -10980,112 +11012,102 @@ msgid ""
"any more."
msgstr ""
-#: server_status.php:1471
+#: server_status.php:1513
#, fuzzy
-#| msgid "Usage"
-msgid "CPU Usage"
-msgstr "Ishlatilish"
+#| msgid "Rename database to"
+msgid "Preset chart"
+msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr ""
-
-#: server_status.php:1477
-#, fuzzy
-#| msgid "Usage"
-msgid "Swap Usage"
-msgstr "Ishlatilish"
-
-#: server_status.php:1480
+#: server_status.php:1517
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Tobе sеrvеr statusi jadvalini ko‘rish"
-#: server_status.php:1482
+#: server_status.php:1519
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Jadvallarni tanlang"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1499
+#: server_status.php:1536
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Jadval nomi noto‘g‘ri"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1518
+#: server_status.php:1555
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr ""
-#: server_status.php:1523
+#: server_status.php:1560
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL so‘rovlari"
-#: server_status.php:1535
+#: server_status.php:1572
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Statiskani ko‘rsatish"
-#: server_status.php:1536
+#: server_status.php:1573
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Jadvallarni tanlang"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr ""
-#: server_status.php:1552
+#: server_status.php:1589
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "So‘rov turi"
-#: server_status.php:1589
+#: server_status.php:1626
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "sekundiga"
-#: server_status.php:1591
+#: server_status.php:1628
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11533,9 +11555,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11549,9 +11571,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
-"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
-"kbd] deb belgilash tavsiya etiladi."
+"oshirishi mumkin. Server [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
+"[/kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:294
#, fuzzy, php-format
@@ -11610,36 +11632,36 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak"
msgid "Browse foreign values"
msgstr "Tashqi qiymatlarni ko‘rib chiqish"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Kiritilgan qator identifikatori: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "PHP-kod sifatida ko‘rsatish"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "SQL-so‘rovni ko‘rsatish"
-#: sql.php:691
+#: sql.php:690
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "Xatcho‘p belgisi"
@@ -12452,9 +12474,9 @@ msgid "Current amount of Questions: %s"
msgstr "Noxavfsiz ulanish"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "Show SQL so‘rovlarini ko‘rsatish"
#: po/advisory_rules.php:16
@@ -12476,7 +12498,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "So‘rovlar keshini defragmentatsiya qilish"
#: po/advisory_rules.php:21
@@ -12661,12 +12683,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "Foydalanilayotgan joy"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -12723,8 +12739,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -12833,9 +12849,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -12853,13 +12869,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
#: po/advisory_rules.php:113
#, php-format
@@ -12891,8 +12909,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "Rate of joins without indexes"
+msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
#: po/advisory_rules.php:121
#, fuzzy
@@ -12912,7 +12932,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -12935,7 +12955,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -12944,7 +12964,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -12957,7 +12977,7 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
+msgid "Rate of reading next table row"
msgstr ""
#: po/advisory_rules.php:136
@@ -12966,8 +12986,8 @@ msgstr ""
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -12998,10 +13018,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
#: po/advisory_rules.php:145
-#, fuzzy
-#| msgid "%s table(s)"
-msgid "% temp disk tables"
-msgstr "Jadvallar soni: \"%s\""
+msgid "Percentage of temp tables on disk"
+msgstr ""
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -13028,8 +13046,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table(s)"
+msgid "Temp disk rate"
+msgstr "Jadvallar soni: \"%s\""
#: po/advisory_rules.php:152
msgid ""
@@ -13070,8 +13090,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "Sortirovka buferi hajmi"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -13091,8 +13113,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "Sortirovka buferi hajmi"
#: po/advisory_rules.php:168
#, php-format
@@ -13100,7 +13124,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -13120,7 +13144,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "Jadval tuzish"
#: po/advisory_rules.php:176
@@ -13141,10 +13165,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "Ochiq jadvallar ro‘yxati"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "Import qilinayotgan fayl formati"
#: po/advisory_rules.php:181
msgid ""
@@ -13167,7 +13191,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "Import qilinayotgan fayl formati"
#: po/advisory_rules.php:186
@@ -13215,7 +13239,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "Indeks keshi"
#: po/advisory_rules.php:201
@@ -13233,8 +13257,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "Kuzatish faol emas."
#: po/advisory_rules.php:206
#, fuzzy
@@ -13292,10 +13318,10 @@ msgid "slow_launch_time is set to %s"
msgstr ""
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "Ulanishlar"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "Doimiy ulanishlar"
#: po/advisory_rules.php:221
msgid ""
@@ -13318,9 +13344,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "Ulanishni qisish"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "Doimiy ulanishlar"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -13342,7 +13368,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "Doimiy ulanishlar"
#: po/advisory_rules.php:231
@@ -13356,8 +13382,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "Import qilinayotgan fayl formati"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -13378,7 +13406,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "Import qilinayotgan fayl formati"
#: po/advisory_rules.php:243
@@ -13405,8 +13433,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "Bufer puli hajmi"
#: po/advisory_rules.php:251
#, fuzzy
@@ -13518,6 +13548,30 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "Foydalanilayotgan joy"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "Ochiq jadvallar ro‘yxati"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "Ulanishlar"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "Ulanishni qisish"
+
+#, fuzzy
+#~ msgid "CPU Usage"
+#~ msgstr "Ishlatilish"
+
+#, fuzzy
+#~ msgid "Swap Usage"
+#~ msgstr "Ishlatilish"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS ish kitobi"
@@ -13667,8 +13721,8 @@ msgstr ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
-#~ "\"FAQ 3.11\"[/a]ga qarang"
+#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation."
+#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
#~ msgid "Bar type"
#~ msgstr "So‘rov turi"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index c7eed90fad..1b89d18e07 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-08-11 04:40+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
+"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "全部显示"
@@ -46,7 +46,7 @@ msgstr "搜索"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "键名"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "说明"
@@ -198,7 +198,7 @@ msgstr "链接到"
msgid "Comments"
msgstr "注释"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -209,12 +209,12 @@ msgstr "注释"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "否"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -230,7 +230,7 @@ msgstr "否"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -351,7 +351,7 @@ msgstr "编辑或导出关系大纲"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -604,8 +604,8 @@ msgstr "追踪已禁用。"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -615,7 +615,7 @@ msgstr "视图"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "复制"
@@ -657,7 +657,7 @@ msgstr "仅选择多余"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "导出"
@@ -719,10 +719,10 @@ msgstr "已追踪的表"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -742,7 +742,7 @@ msgstr "更新"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "状态"
@@ -839,8 +839,8 @@ msgstr "转存已经保存到文件 %s 中。"
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -879,7 +879,7 @@ msgstr "书签已删除。"
msgid "Showing bookmark"
msgstr "显示书签"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "已创建书签 %s"
@@ -928,15 +928,15 @@ msgstr "点击选中"
msgid "Click to unselect"
msgstr "点击取消"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "您真的要"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "您将要删除一个完整的数据库!"
@@ -1011,12 +1011,12 @@ msgstr "重新载入权限"
msgid "Removing Selected Users"
msgstr "正在删除选中的用户"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "关闭"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1024,15 +1024,15 @@ msgstr "关闭"
msgid "Edit"
msgstr "编辑"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "实时流量图"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "实时连接/进程图"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "实时查询图"
@@ -1043,13 +1043,13 @@ msgstr "静态数据"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "总计"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "其它"
@@ -1079,7 +1079,7 @@ msgstr "服务器流量 (单位: KB)"
msgid "Connections since last refresh"
msgstr "自上次刷新起的连接数"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "进程"
@@ -1097,154 +1097,186 @@ msgstr "自上次刷新起的内部查询"
msgid "Questions (executed statements by the server)"
msgstr "内部查询 (服务器执行的查询)"
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "查询统计"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Failed to read configuration file"
+msgid "Local monitor configuration icompatible"
+msgstr "读取配置文件失败"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "查询缓存"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "查询缓存"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "查询缓存"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr "系统 CPU 使用"
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr "系统内存"
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr "系统交换空间"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr "平均负载"
-#: js/messages.php:100
+#: js/messages.php:107
msgid "Total memory"
msgstr "内存总数"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr "已缓存的内存"
-#: js/messages.php:102
+#: js/messages.php:109
msgid "Buffered memory"
msgstr "已缓冲的内存"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr "空闲内存"
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr "已用内存"
-#: js/messages.php:106
+#: js/messages.php:113
msgid "Total Swap"
msgstr "交换空间总数"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr "已缓存的交换空间"
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr "已用交换空间"
-#: js/messages.php:109
+#: js/messages.php:116
msgid "Free Swap"
msgstr "空闲交换空间"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr "已发送字节数"
-#: js/messages.php:112
+#: js/messages.php:119
msgid "Bytes received"
msgstr "已接收字节数"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "连接"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
msgid "Questions"
msgstr "内部查询"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "流量"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "设置"
-#: js/messages.php:120
+#: js/messages.php:127
msgid "Remove chart"
msgstr "删除图表"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr "编辑标题和标签"
-#: js/messages.php:122
+#: js/messages.php:129
msgid "Add chart to grid"
msgstr "添加图表"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr "请至少添加一个数据"
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "无"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr "继续监控"
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr "暂停监控"
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr "general_log 和 slow_query_log 已启用。"
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr "general_log 已启用。"
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr "slow_query_log 已启用。"
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr "slow_query_log 和 general_log 已禁用。"
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr "log_output 未设置到 TABLE 。"
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr "log_output 已设置到 TABLE 。"
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1254,144 +1286,144 @@ msgstr ""
"slow_query_log 已启用,但服务器仅记录查询时间超过 %d 秒的查询。请根据您的系统"
"适当设置 long_query_time 为 0-2 秒。"
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr "long_query_time 已设为 %d 秒。"
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr "下列设置将被应用到整个服务器直到服务器重新启动:"
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, php-format
msgid "Enable %s"
msgstr "启用 %s"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, php-format
msgid "Disable %s"
msgstr "禁用 %s"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr "设置 long_query_time 为 %d 秒"
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr "无法修改这些变量。请以 root 登录或联系数据库管理员。"
-#: js/messages.php:147
+#: js/messages.php:154
msgid "Change settings"
msgstr "修改设置"
-#: js/messages.php:148
+#: js/messages.php:155
msgid "Current settings"
msgstr "当前设置"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
msgid "Chart Title"
msgstr "图表标题"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "差异"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr "除以 %s:"
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr "从慢查询日志"
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr "从通用日志"
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr "正在加载并分析日志。请稍候。"
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
msgid "Jump to Log table"
msgstr "转到日志表"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr "日志已分析,时间段内没有数据。"
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
msgid "Filters"
msgstr "过滤器"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "快速搜索"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr "根据内容/正则表达式搜索:"
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr "忽略 WHERE 语句中的变量值对查询分组"
-#: js/messages.php:171
+#: js/messages.php:178
msgid "Sum of grouped rows:"
msgstr "分组后的行数:"
-#: js/messages.php:172
+#: js/messages.php:179
msgid "Total:"
msgstr "总数:"
-#: js/messages.php:174
+#: js/messages.php:181
msgid "Loading logs"
msgstr "正在加载日志"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr "监控刷新失败"
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
@@ -1400,201 +1432,201 @@ msgstr ""
"请求新图表数据时服务器返回了无效数据。这可能是因为会话过期。请尝试重新加载页"
"面。"
-#: js/messages.php:177
+#: js/messages.php:184
msgid "Reload page"
msgstr "重新载入页面"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr "影响的行数: "
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr "解析配置文件失败。它看上去不像有效的 JSON 代码"
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr "导入配置失败。正在重设为默认设置..."
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "导入"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "更新查询"
-#: js/messages.php:189
+#: js/messages.php:196
#, fuzzy
#| msgid "Advisor"
msgid "Advisor system"
msgstr "建议"
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "文档"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details"
msgid "Rule details"
msgstr "详细"
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "认证"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "取消"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "正在加载"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "正在处理请求"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "处理请求时发生错误"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "正在删除字段"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "正在添加主键"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "确定"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "正在重命名数据库"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "重新载入数据库"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "正在复制数据库"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "正在修改字符集"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "数据表至少要有一个字段。"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "新建数据表"
-#: js/messages.php:222
+#: js/messages.php:229
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "使用表"
-#: js/messages.php:223
+#: js/messages.php:230
msgid "Hide indexes"
msgstr "隐藏索引"
-#: js/messages.php:224
+#: js/messages.php:231
msgid "Show indexes"
msgstr "显示索引"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "正在搜索"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "隐藏搜索结果"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "显示搜索结果"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "正在浏览"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "正在删除"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "函数定义中必须包含 RETURN 语句!"
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "隐藏查询框"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "显示查询框"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "没有选中任何行"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "修改"
-#: js/messages.php:245
+#: js/messages.php:252
msgid "Query execution time"
msgstr "查询执行时间"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1602,98 +1634,98 @@ msgstr "查询执行时间"
msgid "Save"
msgstr "保存"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "隐藏搜索条件"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "显示搜索条件"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:258
+#: js/messages.php:265
msgid "Add columns"
msgstr "添加字段"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "选择外键"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "选择外键"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "请选择主键或唯一键"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "选择要显示的字段"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "给字段添加选项 "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr "按 Esc 键取消编辑"
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr "拖拽以调整顺序"
-#: js/messages.php:274
+#: js/messages.php:281
msgid "Click to sort"
msgstr "点击以排序"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr "点击以标记/取消标记"
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "点击下箭头以设置显示的字段"
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "生成密码"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "生成"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "修改密码"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "更多"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1701,255 +1733,255 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ",最新稳定版本: "
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "已更新"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "完成"
-#: js/messages.php:315
+#: js/messages.php:322
msgctxt "Previous month"
msgid "Prev"
msgstr "上个月"
-#: js/messages.php:320
+#: js/messages.php:327
msgctxt "Next month"
msgid "Next"
msgstr "下个月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "今天"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "一月"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "二月"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "三月"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "四月"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "五月"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "六月"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "七月"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "八月"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "九月"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "十月"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "十一月"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "周六"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "周"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "时"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "分"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "秒"
@@ -2194,8 +2226,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@@ -2332,7 +2364,7 @@ msgstr "已共享"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "数据表"
@@ -2407,7 +2439,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "无效的主机名 %1$s,请检查配置文件。"
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "服务器"
@@ -2456,7 +2488,7 @@ msgid "Documentation"
msgstr "文档"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL 查询"
@@ -2494,7 +2526,7 @@ msgid "Create PHP Code"
msgstr "创建 PHP 代码"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "刷新"
@@ -2515,7 +2547,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "快速编辑"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "概要"
@@ -2612,7 +2644,7 @@ msgstr "点击切换"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5130,8 +5162,8 @@ msgstr ",@TABLE@ 将变成数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
@@ -5330,7 +5362,7 @@ msgstr "主键排序"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5394,7 +5426,7 @@ msgid "The row has been deleted"
msgstr "已删除该行"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "杀死"
@@ -5410,7 +5442,7 @@ msgstr "显示行"
msgid "total"
msgstr "总计"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "查询花费 %01.4f 秒"
@@ -5479,7 +5511,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。"
msgid "Buffer Pool"
msgstr "缓冲池"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB 状态"
@@ -5848,8 +5880,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
#: libraries/engines/pbxt.lib.php:129
@@ -5942,28 +5974,28 @@ msgid "Display MIME types"
msgstr "显示 MIME 类型"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "主机"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "生成日期"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "服务器版本"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP 版本"
@@ -6163,47 +6195,47 @@ msgid "Generated by"
msgstr "生成者"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查询结果为空 (即零行)。"
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "下列结构被创建或修改。你可以:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
msgid "View a structure's contents by clicking on its name"
msgstr "请通过点击结构的名称来查看它的内容"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "点击相应的“选项”链接修改它的设置"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
msgid "Edit structure by following the \"Structure\" link"
msgstr "请通过点击 \"结构\" 链接来编辑结构"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "转到数据库"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, php-format
msgid "Edit settings for %s"
msgstr "编辑 %s 的设置"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "转到数据表"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, php-format
msgid "Structure of %s"
msgstr "%s 的结构"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "转到视图"
@@ -6651,14 +6683,14 @@ msgid "Slave status"
msgstr "从服务器状态"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "变量"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "值"
@@ -6865,7 +6897,7 @@ msgid "Returns"
msgstr "返回类型"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "时间"
@@ -7291,12 +7323,12 @@ msgid "Synchronize"
msgstr "同步"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "二进制日志"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "变量"
@@ -7349,11 +7381,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "将此 SQL 查询加为书签"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "让所有用户均可访问此书签"
@@ -7729,7 +7761,7 @@ msgstr "协议版本"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "用户"
@@ -8161,17 +8193,17 @@ msgstr "文件不存在"
msgid "Select binary log to view"
msgstr "选择要查看的二进制日志"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "文件"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "截断显示的查询"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "显示完整查询"
@@ -8552,12 +8584,12 @@ msgstr "删除与用户同名的数据库。"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
-"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
-"s。"
+"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
+"限%s。"
#: server_privileges.php:1851
msgid "The selected user was not found in the privilege table."
@@ -8676,7 +8708,7 @@ msgstr "已成功修改主服务器到 %s"
msgid "This server is configured as master in a replication process."
msgstr "此服务器已被配置为一个复制进程中的主服务器。"
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "查看主服务器状态"
@@ -8817,126 +8849,126 @@ msgstr ""
"此服务器尚未配置为一个复制进程中的从服务器。你想现在配置"
"吗?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "已杀死线程 %s 。"
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。"
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "句柄"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "查询缓存"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "线程"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "临时数据"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "延迟插入"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "键缓存"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "多表查询"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "排序"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "事务协调"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "强制更新 (关闭) 所有表"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "显示打开的表"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "显示从服务器"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "显示从服务器状态"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "强制更新查询缓存"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "运行信息"
-#: server_status.php:646
+#: server_status.php:688
msgid "All status variables"
msgstr "所有状态变量"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr "监控"
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr "建议"
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
msgid "Refresh rate: "
msgstr "刷新频率: "
-#: server_status.php:701
+#: server_status.php:743
msgid "Containing the word:"
msgstr "包含文字:"
-#: server_status.php:706
+#: server_status.php:748
msgid "Show only alert values"
msgstr "仅显示报警值"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr "按分类显示"
-#: server_status.php:723
+#: server_status.php:765
msgid "Show unformatted values"
msgstr "显示原始值"
-#: server_status.php:727
+#: server_status.php:769
msgid "Related links:"
msgstr "相关链接:"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "查询分析器"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "介绍"
-#: server_status.php:764
+#: server_status.php:806
#, fuzzy
#| msgid ""
#| "The Advisor system can provide recommendations on server variables by "
@@ -8970,58 +9002,58 @@ msgstr ""
"没有显著的性能提升则恢复设置。"
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, php-format
msgid "Questions since startup: %s"
msgstr "自启动以来的内部查询: %s"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "每小时"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "每分钟"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "每秒"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "说明"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr "查询数量"
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr "自启动以来的网络流量: %s"
-#: server_status.php:899
+#: server_status.php:941
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "此 MySQL 服务器已运行 %s。启动时间为 %s 。"
-#: server_status.php:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 服务器正以主和从服务器运行于复制进程中。"
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 服务器正以主服务器运行于复制进程中。"
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 服务器正以从服务器运行于复制进程中。"
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9029,11 +9061,11 @@ msgstr ""
"要获得更多关于此服务器的复制状态,请查看复制状态信息"
"。"
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "复制状态"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9041,45 +9073,45 @@ msgstr ""
"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正"
"确"
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "已接收"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "已发送"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "最大并发连接数"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "已失败"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "命令"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr "因客户端没有关闭连接而中止的连接数。"
-#: server_status.php:1137
+#: server_status.php:1179
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "尝试连接到 MySQL 服务器但失败的连接数。"
-#: server_status.php:1138
+#: server_status.php:1180
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 "
@@ -9088,16 +9120,16 @@ msgstr ""
"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储"
"的数量。"
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "事务所用的临时二进制日志缓存的数量。"
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。"
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9107,17 +9139,17 @@ msgstr ""
"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables "
"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。"
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "mysqld 已创建的临时文件的数量。"
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "服务器执行语句时自动在内存中创建的临时表的数量。"
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9125,29 +9157,29 @@ msgstr ""
"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复"
"值) 。"
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "延迟插入已写入的行数。"
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "已执行的强制更新 (FLUSH) 语句数。"
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "已执行的内部提交 (COMMIT) 语句数。"
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "从表中删除行的次数。"
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9156,7 +9188,7 @@ msgstr ""
"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。"
"Handler_discovery 表明了一张表被发现的次数。"
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9165,14 +9197,14 @@ msgstr ""
"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫"
"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。"
-#: server_status.php:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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 "
@@ -9181,7 +9213,7 @@ msgstr ""
"根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或"
"进行完整表扫描,该值将会不断增长。"
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9189,7 +9221,7 @@ msgstr ""
"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... "
"DESC 的查询。"
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9199,7 +9231,7 @@ msgstr ""
"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能"
"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。"
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9209,35 +9241,35 @@ msgstr ""
"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味"
"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。"
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "内部回滚 (ROLLBACK) 语句数。"
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "表中更新行的请求数。"
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "表中插入行的请求数。"
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "非空页数 (含脏页) 。"
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "当前脏页数。"
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "请求更新的缓冲池页数。"
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "空闲页数。"
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9246,7 +9278,7 @@ msgstr ""
"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能"
"被刷新或删除的。"
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9257,11 +9289,11 @@ msgstr ""
"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data 。"
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "缓冲池总大小 (单位:页)。"
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9269,24 +9301,24 @@ msgstr ""
"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发"
"生。"
-#: server_status.php:1168
+#: server_status.php:1210
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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB 完成的逻辑读请求数。"
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9298,85 +9330,85 @@ msgstr ""
"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这"
"个值应该会很小。"
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "写入 InnoDB 缓冲池的次数。"
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "fsync() 总操作的次数。"
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "当前挂起 fsync() 操作的数量。"
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "当前挂起的读操作数。"
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "当前挂起的写操作数。"
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "读取的总数据量 (单位:字节)。"
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "数据读取总数。"
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "数据写入总数。"
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "写入的总数据量 (单位:字节)。"
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr "以双写入操作写入的页数。"
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "已经执行的双写入次数。"
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "日志写入请求数。"
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "日志物理写入次数。"
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "使用 fsync() 写入日志文件的次数。"
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "当前挂起的 fsync 日志文件数。"
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "当前挂起的日志写入数。"
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "写入日志文件的字节数。"
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "创建的页数。"
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9384,75 +9416,75 @@ msgstr ""
"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方"
"便地将这些值转化为字节数。"
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "读取的页数。"
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "写入的页数。"
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "正在等待行锁的数量。"
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "等待获得行锁的平均时间 (单位:毫秒)。"
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "等待获得行锁的总时间 (单位:毫秒)。"
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "等待获得行锁的最大时间 (单位:毫秒)。"
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "等待行锁的次数。"
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "从 InnoDB 表中删除的行数。"
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "插入到 InnoDB 表中的行数。"
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "从 InnoDB 表中读取的行数。"
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB 中更新的行数。"
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "从缓存中读取键块的请求次数。"
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -9461,15 +9493,15 @@ msgstr ""
"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size "
"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。"
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "将一个键块写入缓存的请求数。"
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "将键块物理写入到磁盘的次数。"
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -9478,35 +9510,35 @@ msgstr ""
"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行"
"相同的查询时的效率差异。默认值0表示还没有查询被编译。"
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr "自服务器启动以来的最高并发连接数。"
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "等待写入延迟插入队列的行数。"
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "打开的文件个数。"
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "打开的流个数 (主要用于日志记录)。"
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "打开的数据表个数。"
-#: server_status.php:1217
+#: server_status.php:1259
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 "
@@ -9515,19 +9547,19 @@ msgstr ""
"查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY "
"CACHE 语句解决。"
-#: server_status.php:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "查询缓存中空闲的内存总数。"
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "缓存命中数。"
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "加入到缓存的查询数。"
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9537,7 +9569,7 @@ msgstr ""
"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除"
"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。"
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9545,19 +9577,19 @@ msgstr ""
"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的"
"查询)。"
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "在缓存中注册的查询数。"
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "查询缓存中的总块数。"
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "失败保护器的状态 (尚未应用)。"
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9565,11 +9597,11 @@ msgstr ""
"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当"
"的索引。"
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr "使用在关联表上使用范围搜索的多表查询的数量。"
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -9577,7 +9609,7 @@ msgstr ""
"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细"
"检查是否已经为表建立了适当的索引。)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9585,36 +9617,36 @@ msgstr ""
"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影"
"响。)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "在第一张表上进行了完整表扫描的多表查询数。"
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "当前由从 SQL 线程打开的临时表的数量。"
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr "从 SQL 线程总共重试事务复制数。"
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。"
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。"
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "使用了比 long_query_time 更多时间的查询数。"
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -9623,23 +9655,23 @@ msgstr ""
"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 "
"sort_buffer_size 的值。"
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "局部范围完成的排序次数。"
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "排序的行数。"
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "扫描表完成的排序次数。"
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "立即需要锁定表的次数。"
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9649,7 +9681,7 @@ msgstr ""
"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题,"
"则应该首先检查您的查询语句,然后使用复制操作来分开表。"
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -9658,11 +9690,11 @@ msgstr ""
"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。"
"如果该值是红色的,则应该增加 thread_cache_size 的值。"
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "当前打开的连接数。"
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9673,58 +9705,58 @@ msgstr ""
"thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提"
"升)。"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "非睡眠状态的线程数量。"
-#: server_status.php:1385
+#: server_status.php:1427
msgid "Start Monitor"
msgstr "启动监控"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr "说明/设置"
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr "完成排列/编辑图表"
-#: server_status.php:1404
+#: server_status.php:1446
msgid "Add chart"
msgstr "添加图表"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr "排列/编辑图表"
-#: server_status.php:1410
+#: server_status.php:1452
msgid "Refresh rate"
msgstr "刷新频率"
-#: server_status.php:1415
+#: server_status.php:1457
msgid "Chart columns"
msgstr "每行图表个数"
-#: server_status.php:1431
+#: server_status.php:1473
msgid "Chart arrangement"
msgstr "图表排列"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
msgid "Reset to default"
msgstr "恢复默认"
-#: server_status.php:1436
+#: server_status.php:1478
msgid "Monitor Instructions"
msgstr "监控说明"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9736,7 +9768,7 @@ msgstr ""
"需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。"
"请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%"
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9746,7 +9778,7 @@ msgstr ""
"很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志"
"的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。"
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9763,7 +9795,7 @@ msgstr ""
"住鼠标左键的拖拽操作选择相应的时间段。确认后即可显示出分组后的查询,你可以通"
"过点击其中的 SELECT 语句获得进一步分析。"
-#: server_status.php:1459
+#: server_status.php:1501
msgid ""
"Please note: Enabling the general_log may increase the server load by "
"5-15%. Also be aware that generating statistics from the logs is a load "
@@ -9775,91 +9807,85 @@ msgstr ""
"据同样也是高负载的任务,建议选择一段小范围的时间并在用完监控后禁止 "
"general_log 并清空它的表。"
-#: server_status.php:1471
-msgid "CPU Usage"
-msgstr "CPU 使用"
+#: server_status.php:1513
+#, fuzzy
+#| msgid "Remove chart"
+msgid "Preset chart"
+msgstr "删除图表"
-#: server_status.php:1474
-msgid "Memory Usage"
-msgstr "内存使用"
-
-#: server_status.php:1477
-msgid "Swap Usage"
-msgstr "交换空间使用"
-
-#: server_status.php:1480
+#: server_status.php:1517
msgid "Status variable(s)"
msgstr "状态变量"
-#: server_status.php:1482
+#: server_status.php:1519
msgid "Select series:"
msgstr "选择数据:"
-#: server_status.php:1484
+#: server_status.php:1521
msgid "Commonly monitored"
msgstr "常用监控"
-#: server_status.php:1499
+#: server_status.php:1536
msgid "or type variable name:"
msgstr "或输入变量名:"
-#: server_status.php:1503
+#: server_status.php:1540
msgid "Display as differential value"
msgstr "独立显示"
-#: server_status.php:1505
+#: server_status.php:1542
msgid "Apply a divisor"
msgstr "应用除数"
-#: server_status.php:1512
+#: server_status.php:1549
msgid "Append unit to data values"
msgstr "在值后附加单位"
-#: server_status.php:1518
+#: server_status.php:1555
msgid "Add this series"
msgstr "添加该数据"
-#: server_status.php:1520
+#: server_status.php:1557
msgid "Clear series"
msgstr "清除所有数据"
-#: server_status.php:1523
+#: server_status.php:1560
msgid "Series in Chart:"
msgstr "图表中的数据:"
-#: server_status.php:1535
+#: server_status.php:1572
msgid "Log statistics"
msgstr "日志统计"
-#: server_status.php:1536
+#: server_status.php:1573
msgid "Selected time range:"
msgstr "选择时间范围:"
-#: server_status.php:1541
+#: server_status.php:1578
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句"
-#: server_status.php:1546
+#: server_status.php:1583
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "去除 INSERT 语句中的变量值以获得更好的分组"
-#: server_status.php:1549
+#: server_status.php:1586
msgid ""
"
Choose from which log you want the statistics to be generated from.
"
"Results are grouped by query text."
msgstr "
请选择生成统计的来源日志。
结果将根据查询语句分组。"
-#: server_status.php:1552
+#: server_status.php:1589
msgid "Query analyzer"
msgstr "查询分析器"
-#: server_status.php:1589
+#: server_status.php:1626
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 秒"
-#: server_status.php:1591
+#: server_status.php:1628
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10288,34 +10314,34 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。"
msgid "Browse foreign values"
msgstr "浏览不相关的值"
-#: sql.php:197
+#: sql.php:196
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "使用书签 \"%s\" 作为默认的查询。"
-#: sql.php:669 tbl_replace.php:369
+#: sql.php:668 tbl_replace.php:369
#, php-format
msgid "Inserted row id: %1$d"
msgstr "插入的行 id: %1$d"
-#: sql.php:686
+#: sql.php:685
msgid "Showing as PHP code"
msgstr "显示为 PHP 代码"
-#: sql.php:689 tbl_replace.php:343
+#: sql.php:688 tbl_replace.php:343
msgid "Showing SQL query"
msgstr "显示 SQL 查询"
-#: sql.php:691
+#: sql.php:690
msgid "Validated SQL"
msgstr "已校验的 SQL"
-#: sql.php:885
+#: sql.php:883
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "数据表 `%s` 的索引存在问题"
-#: sql.php:916
+#: sql.php:914
msgid "Label"
msgstr "标签"
@@ -11047,9 +11073,9 @@ msgid "Current amount of Questions: %s"
msgstr "当前连接"
#: po/advisory_rules.php:15
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Show SQL queries"
-msgid "% slow queries"
+msgid "Percentage of slow queries"
msgstr "显示 SQL 查询"
#: po/advisory_rules.php:16
@@ -11071,7 +11097,7 @@ msgstr ""
#: po/advisory_rules.php:20
#, fuzzy
#| msgid "Flush query cache"
-msgid "slow query rate"
+msgid "Slow query rate"
msgstr "强制更新查询缓存"
#: po/advisory_rules.php:21
@@ -11259,12 +11285,6 @@ msgstr ""
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
-#: po/advisory_rules.php:70
-#, fuzzy
-#| msgid "Space usage"
-msgid "memcached usage"
-msgstr "已用空间"
-
#: po/advisory_rules.php:71
msgid "Suboptimal caching method."
msgstr ""
@@ -11321,8 +11341,8 @@ msgstr ""
#: po/advisory_rules.php:83
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s%"
-"%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
msgstr ""
#: po/advisory_rules.php:85
@@ -11431,9 +11451,9 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy, php-format
+#, fuzzy
#| msgid "Allows creating temporary tables."
-msgid "% sorts that cause temporary tales"
+msgid "Percentage of sorts that cause temporary tables"
msgstr "允许创建临时表。"
#: po/advisory_rules.php:106 po/advisory_rules.php:111
@@ -11451,13 +11471,15 @@ msgstr ""
#: po/advisory_rules.php:108
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
-"%."
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
msgstr ""
#: po/advisory_rules.php:110
-msgid "rate of sorts that cause temporary tables"
-msgstr ""
+#, fuzzy
+#| msgid "Allows creating temporary tables."
+msgid "Rate of sorts that cause temporary tables"
+msgstr "允许创建临时表。"
#: po/advisory_rules.php:113
#, php-format
@@ -11489,8 +11511,10 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:120
-msgid "rate of joins without indexes"
-msgstr ""
+#, fuzzy
+#| msgid "There are no routines to display."
+msgid "Rate of joins without indexes"
+msgstr "没有程序。"
#: po/advisory_rules.php:121
#, fuzzy
@@ -11510,7 +11534,7 @@ msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:125
-msgid "rate of reading first index entry"
+msgid "Rate of reading first index entry"
msgstr ""
#: po/advisory_rules.php:126
@@ -11533,7 +11557,7 @@ msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
#: po/advisory_rules.php:130
-msgid "rate of reading fixed position"
+msgid "Rate of reading fixed position"
msgstr ""
#: po/advisory_rules.php:131
@@ -11542,7 +11566,7 @@ msgstr ""
#: po/advisory_rules.php:132
msgid ""
-"This indicates many queries need to sort results and/or do a full table "
+"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 ""
@@ -11555,8 +11579,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:135
-msgid "rate of reading next table row"
-msgstr ""
+#, fuzzy
+#| msgid "Where to show the table row links"
+msgid "Rate of reading next table row"
+msgstr "表中每行数据操作链接位置"
#: po/advisory_rules.php:136
#, fuzzy
@@ -11566,8 +11592,8 @@ msgstr "表中每行数据操作链接位置"
#: po/advisory_rules.php:137
msgid ""
-"This indicates many queries are doing full table scans. Add indexes where "
-"applicable."
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
msgstr ""
#: po/advisory_rules.php:138
@@ -11599,10 +11625,9 @@ msgstr ""
#: po/advisory_rules.php:145
#, fuzzy
-#| msgid "%s table"
-#| msgid_plural "%s tables"
-msgid "% temp disk tables"
-msgstr "%s 张表"
+#| msgid "Where to show the table row links"
+msgid "Percentage of temp tables on disk"
+msgstr "表中每行数据操作链接位置"
#: po/advisory_rules.php:146 po/advisory_rules.php:151
msgid ""
@@ -11629,8 +11654,11 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:150
-msgid "temp disk rate"
-msgstr ""
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "Temp disk rate"
+msgstr "%s 张表"
#: po/advisory_rules.php:152
msgid ""
@@ -11671,8 +11699,10 @@ msgid "key_buffer_size is 0"
msgstr ""
#: po/advisory_rules.php:160
-msgid "max % MyISAM key buffer ever used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Max % MyISAM key buffer ever used"
+msgstr "排序缓存大小"
#: po/advisory_rules.php:161 po/advisory_rules.php:166
#, php-format
@@ -11692,8 +11722,10 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:165
-msgid "% MyISAM key buffer used"
-msgstr ""
+#, fuzzy
+#| msgid "Sort buffer size"
+msgid "Percentage of MyISAM key buffer used"
+msgstr "排序缓存大小"
#: po/advisory_rules.php:168
#, php-format
@@ -11701,7 +11733,7 @@ msgid "%% MyISAM key buffer used: %s, this value should be above 95%%"
msgstr ""
#: po/advisory_rules.php:170
-msgid "% index reads from memory"
+msgid "Percentage of index reads from memory"
msgstr ""
#: po/advisory_rules.php:171
@@ -11721,7 +11753,7 @@ msgstr ""
#: po/advisory_rules.php:175
#, fuzzy
#| msgid "Create table"
-msgid "rate of table open"
+msgid "Rate of table open"
msgstr "新建数据表"
#: po/advisory_rules.php:176
@@ -11742,10 +11774,10 @@ msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
#: po/advisory_rules.php:180
-#, fuzzy, php-format
-#| msgid "Show open tables"
-msgid "% open files"
-msgstr "显示打开的表"
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of used open files limit"
+msgstr "导入文件的格式"
#: po/advisory_rules.php:181
msgid ""
@@ -11768,7 +11800,7 @@ msgstr ""
#: po/advisory_rules.php:185
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of open files"
+msgid "Rate of open files"
msgstr "导入文件的格式"
#: po/advisory_rules.php:186
@@ -11815,7 +11847,7 @@ msgstr ""
#: po/advisory_rules.php:200
#, fuzzy
#| msgid "Key cache"
-msgid "thread cache"
+msgid "Thread cache"
msgstr "键缓存"
#: po/advisory_rules.php:201
@@ -11833,8 +11865,10 @@ msgid "The thread cache is set to 0"
msgstr ""
#: po/advisory_rules.php:205
-msgid "thread cache hit rate %"
-msgstr ""
+#, fuzzy
+#| msgid "Tracking is not active."
+msgid "Thread cache hit rate %"
+msgstr "追踪已禁用。"
#: po/advisory_rules.php:206
#, fuzzy
@@ -11893,10 +11927,10 @@ msgid "slow_launch_time is set to %s"
msgstr "long_query_time 已设为 %d 秒。"
#: po/advisory_rules.php:220
-#, fuzzy, php-format
-#| msgid "Connections"
-msgid "% connections used"
-msgstr "连接"
+#, fuzzy
+#| msgid "Persistent connections"
+msgid "Percentage of used connections"
+msgstr "持久连接"
#: po/advisory_rules.php:221
msgid ""
@@ -11919,9 +11953,9 @@ msgstr ""
#: po/advisory_rules.php:225
#, fuzzy
-#| msgid "Compress connection"
-msgid "% aborted connections"
-msgstr "压缩连接"
+#| msgid "Persistent connections"
+msgid "Percentage of aborted connections"
+msgstr "持久连接"
#: po/advisory_rules.php:226
msgid "Too many connections are aborted."
@@ -11943,7 +11977,7 @@ msgstr ""
#: po/advisory_rules.php:230
#, fuzzy
#| msgid "Persistent connections"
-msgid "rate of aborted connections"
+msgid "Rate of aborted connections"
msgstr "持久连接"
#: po/advisory_rules.php:231
@@ -11957,8 +11991,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:235
-msgid "% aborted clients"
-msgstr ""
+#, fuzzy
+#| msgid "Format of imported file"
+msgid "Percentage of aborted clients"
+msgstr "导入文件的格式"
#: po/advisory_rules.php:236 po/advisory_rules.php:241
msgid "Too many clients are aborted."
@@ -11979,7 +12015,7 @@ msgstr ""
#: po/advisory_rules.php:240
#, fuzzy
#| msgid "Format of imported file"
-msgid "rate of aborted clients"
+msgid "Rate of aborted clients"
msgstr "导入文件的格式"
#: po/advisory_rules.php:243
@@ -12006,8 +12042,10 @@ msgid "have_innodb is set to 'value'"
msgstr ""
#: po/advisory_rules.php:250
-msgid "% InnoDB log size"
-msgstr ""
+#, fuzzy
+#| msgid "Buffer pool size"
+msgid "InnoDB log size"
+msgstr "缓冲池大小"
#: po/advisory_rules.php:251
#, fuzzy
@@ -12119,6 +12157,31 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "memcached usage"
+#~ msgstr "已用空间"
+
+#, fuzzy
+#~ msgid "% open files"
+#~ msgstr "显示打开的表"
+
+#, fuzzy
+#~ msgid "% connections used"
+#~ msgstr "连接"
+
+#, fuzzy
+#~ msgid "% aborted connections"
+#~ msgstr "压缩连接"
+
+#~ msgid "CPU Usage"
+#~ msgstr "CPU 使用"
+
+#~ msgid "Memory Usage"
+#~ msgstr "内存使用"
+
+#~ msgid "Swap Usage"
+#~ msgstr "交换空间使用"
+
#~ msgid "Excel 97-2003 XLS Workbook"
#~ msgstr "Excel 97-2003 XLS 工作簿"
@@ -12308,8 +12371,8 @@ msgstr ""
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
+#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "添加新用户"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 8959d35ccd..7a404642d7 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-11 09:15-0400\n"
+"POT-Creation-Date: 2011-08-12 12:32+0200\n"
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
"Last-Translator: \n"
"Language-Team: chinese_traditional \n"
+"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:277
+#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:284
#: libraries/display_tbl.lib.php:358 server_privileges.php:1670
msgid "Show all"
msgstr "全部顯示"
@@ -46,7 +46,7 @@ msgstr "搜尋"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409
#: db_operations.php:517 db_operations.php:544 db_search.php:329
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:200
+#: db_structure.php:529 enum_editor.php:63 js/messages.php:207
#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302
#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279
#: libraries/common.lib.php:2234 libraries/core.lib.php:508
@@ -87,7 +87,7 @@ msgstr "鍵名"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:56
-#: server_status.php:1311
+#: server_status.php:1353
msgid "Description"
msgstr "說明"
@@ -198,7 +198,7 @@ msgstr "連結到"
msgid "Comments"
msgstr "註釋"
-#: db_datadict.php:237 js/messages.php:219 libraries/Index.class.php:349
+#: db_datadict.php:237 js/messages.php:226 libraries/Index.class.php:349
#: libraries/Index.class.php:376 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -209,12 +209,12 @@ msgstr "註釋"
#: server_privileges.php:1468 server_privileges.php:1479
#: server_privileges.php:1725 server_privileges.php:1736
#: server_privileges.php:2056 server_privileges.php:2061
-#: server_privileges.php:2355 sql.php:272 sql.php:333 tbl_printview.php:194
+#: server_privileges.php:2355 sql.php:271 sql.php:332 tbl_printview.php:194
#: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326
msgid "No"
msgstr "否"
-#: db_datadict.php:237 js/messages.php:218 libraries/Index.class.php:350
+#: db_datadict.php:237 js/messages.php:225 libraries/Index.class.php:350
#: libraries/Index.class.php:375 libraries/Index.class.php:674
#: libraries/config.values.php:45 libraries/config.values.php:51
#: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301
@@ -230,7 +230,7 @@ msgstr "否"
#: server_databases.php:76 server_privileges.php:1465
#: server_privileges.php:1476 server_privileges.php:1722
#: server_privileges.php:1736 server_privileges.php:2056
-#: server_privileges.php:2059 server_privileges.php:2355 sql.php:332
+#: server_privileges.php:2059 server_privileges.php:2355 sql.php:331
#: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347
#: tbl_tracking.php:319 tbl_tracking.php:324
msgid "Yes"
@@ -351,7 +351,7 @@ msgstr "編輯或匯出關聯大綱"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32
-#: libraries/export/pdf.php:95 libraries/export/xml.php:344
+#: libraries/export/pdf.php:95 libraries/export/xml.php:346
#: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59
#: libraries/rte/rte_triggers.lib.php:310
#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832
@@ -609,8 +609,8 @@ msgstr "追蹤已停用"
#: db_structure.php:373 libraries/display_tbl.lib.php:2226
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:158
@@ -620,7 +620,7 @@ msgstr "view"
#: db_structure.php:438 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:498
+#: server_replication.php:162 server_status.php:543
msgid "Replication"
msgstr "複製"
@@ -662,7 +662,7 @@ msgstr "僅選擇多餘"
#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380
#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:80 prefs_manage.php:286
-#: server_privileges.php:1441 server_status.php:1432
+#: server_privileges.php:1441 server_status.php:1474
#: setup/frames/menu.inc.php:21
msgid "Export"
msgstr "匯出"
@@ -724,10 +724,10 @@ msgstr "已追蹤的表"
#: libraries/export/htmlword.php:78 libraries/export/latex.php:151
#: libraries/export/odt.php:109 libraries/export/pdf.php:95
#: libraries/export/sql.php:583 libraries/export/texytext.php:66
-#: libraries/export/xml.php:276 libraries/header.inc.php:146
+#: libraries/export/xml.php:279 libraries/header.inc.php:146
#: libraries/header_printview.inc.php:57 server_databases.php:156
#: server_privileges.php:1827 server_privileges.php:1888
-#: server_privileges.php:2146 server_status.php:1065
+#: server_privileges.php:2146 server_status.php:1107
#: server_synchronize.php:1140 server_synchronize.php:1144
#: tbl_tracking.php:633
msgid "Database"
@@ -747,7 +747,7 @@ msgstr "更新"
#: db_tracking.php:89 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
-#: server_status.php:1068 sql.php:837 tbl_tracking.php:638
+#: server_status.php:1110 sql.php:835 tbl_tracking.php:638
msgid "Status"
msgstr "狀態"
@@ -844,8 +844,8 @@ msgstr "備份資料已儲存至檔案 %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制."
#: import.php:277 import.php:330 libraries/File.class.php:456
@@ -885,7 +885,7 @@ msgstr "書籤已被刪除."
msgid "Showing bookmark"
msgstr "顯示書籤"
-#: import.php:401 sql.php:872
+#: import.php:401 sql.php:870
#, php-format
msgid "Bookmark %s created"
msgstr "已建立書籤 %s"
@@ -935,15 +935,15 @@ msgstr "點擊選取"
msgid "Click to unselect"
msgstr "點擊取消"
-#: js/messages.php:29 libraries/import.lib.php:102 sql.php:229
+#: js/messages.php:29 libraries/import.lib.php:102 sql.php:228
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令"
-#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:327
+#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:326
msgid "Do you really want to "
msgstr "您真的要"
-#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:312
+#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:311
msgid "You are about to DESTROY a complete database!"
msgstr "您將要刪除一個完整的資料庫!"
@@ -1019,12 +1019,12 @@ msgstr "重新載入權限"
msgid "Removing Selected Users"
msgstr "正在刪除選中的使用者"
-#: js/messages.php:61 js/messages.php:123 libraries/tbl_properties.inc.php:758
+#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:758
#: tbl_tracking.php:235 tbl_tracking.php:400
msgid "Close"
msgstr "關閉"
-#: js/messages.php:64 js/messages.php:242 libraries/Index.class.php:460
+#: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460
#: libraries/common.lib.php:580 libraries/common.lib.php:1113
#: libraries/common.lib.php:3071 libraries/common.lib.php:3072
#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1326
@@ -1032,15 +1032,15 @@ msgstr "關閉"
msgid "Edit"
msgstr "編輯"
-#: js/messages.php:65 server_status.php:663
+#: js/messages.php:65 server_status.php:705
msgid "Live traffic chart"
msgstr "即時流量圖表"
-#: js/messages.php:66 server_status.php:666
+#: js/messages.php:66 server_status.php:708
msgid "Live conn./process chart"
msgstr "即時連線圖表"
-#: js/messages.php:67 server_status.php:684
+#: js/messages.php:67 server_status.php:726
msgid "Live query chart"
msgstr "即時查詢圖表"
@@ -1051,13 +1051,13 @@ msgstr "靜態資料"
#. l10n: Total number of queries
#: js/messages.php:71 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:158 server_databases.php:218
-#: server_status.php:968 server_status.php:1029 tbl_printview.php:315
+#: server_status.php:1010 server_status.php:1071 tbl_printview.php:315
#: tbl_structure.php:798
msgid "Total"
msgstr "總計"
#. l10n: Other, small valued, queries
-#: js/messages.php:73 server_status.php:866
+#: js/messages.php:73 server_status.php:908
msgid "Other"
msgstr "其他"
@@ -1087,7 +1087,7 @@ msgstr "伺服器流量(單位為KiB,即2^10)"
msgid "Connections since last refresh"
msgstr "最後一次連線"
-#: js/messages.php:83 js/messages.php:114 server_status.php:1061
+#: js/messages.php:83 js/messages.php:121 server_status.php:1103
msgid "Processes"
msgstr "處理"
@@ -1107,170 +1107,202 @@ msgstr "最後一次連線"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:90 server_status.php:645
+#: js/messages.php:90 server_status.php:687
msgid "Query statistics"
msgstr "查詢統計"
#: js/messages.php:93
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Local monitor configuration icompatible"
+msgstr "無法儲存設定"
+
+#: js/messages.php:94
+msgid ""
+"The chart arrangement configuration in your browsers local storage is not "
+"compatible anymore to the newer version of the monitor dialog. It is very "
+"likely that your current configuration will not work anymore. Please reset "
+"your configuration to default in the Settings menu."
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache efficiency"
+msgstr "查詢快取"
+
+#: js/messages.php:97 po/advisory_rules.php:70
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache usage"
+msgstr "查詢快取"
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Query cache"
+msgid "Query cache used"
+msgstr "查詢快取"
+
+#: js/messages.php:100
msgid "System CPU Usage"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:101
msgid "System memory"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:102
msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:96 libraries/common.lib.php:1303 server_status.php:1508
+#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1545
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:97 libraries/common.lib.php:1301 server_status.php:1508
+#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1545
msgid "KiB"
msgstr "KB"
-#: js/messages.php:99
+#: js/messages.php:106
msgid "Average load"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:107
#, fuzzy
#| msgid "Total count"
msgid "Total memory"
msgstr "總數量"
-#: js/messages.php:101
+#: js/messages.php:108
msgid "Cached memory"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:109
#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
msgstr "快取池"
-#: js/messages.php:103
+#: js/messages.php:110
msgid "Free memory"
msgstr ""
-#: js/messages.php:104
+#: js/messages.php:111
msgid "Used memory"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:113
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
msgstr "總計"
-#: js/messages.php:107
+#: js/messages.php:114
msgid "Cached Swap"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:115
msgid "Used Swap"
msgstr ""
-#: js/messages.php:109
+#: js/messages.php:116
#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
msgstr "空閒頁"
-#: js/messages.php:111
+#: js/messages.php:118
msgid "Bytes sent"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:119
#, fuzzy
#| msgid "Received"
msgid "Bytes received"
msgstr "已接收"
-#: js/messages.php:113 server_status.php:987
+#: js/messages.php:120 server_status.php:1029
msgid "Connections"
msgstr "連線"
#. l10n: Questions is the name of a MySQL Status variable
-#: js/messages.php:117
+#: js/messages.php:124
#, fuzzy
#| msgid "Versions"
msgid "Questions"
msgstr "版本"
-#: js/messages.php:118 server_status.php:942
+#: js/messages.php:125 server_status.php:984
msgid "Traffic"
msgstr "流量"
-#: js/messages.php:119 libraries/server_links.inc.php:73
-#: server_status.php:1389
+#: js/messages.php:126 libraries/server_links.inc.php:73
+#: server_status.php:1431
msgid "Settings"
msgstr "設定"
-#: js/messages.php:120
+#: js/messages.php:127
#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
msgstr "刪除資料庫"
-#: js/messages.php:121
+#: js/messages.php:128
msgid "Edit title and labels"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:129
#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
msgstr "對齊網格"
-#: js/messages.php:124
+#: js/messages.php:131
msgid "Please add at least one variable to the series"
msgstr ""
-#: js/messages.php:125 libraries/display_export.lib.php:308
+#: js/messages.php:132 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052
#: libraries/tbl_properties.inc.php:544 pmd_general.php:510
-#: server_privileges.php:2042 server_status.php:1102 server_status.php:1525
+#: server_privileges.php:2042 server_status.php:1144 server_status.php:1562
msgid "None"
msgstr "無"
-#: js/messages.php:126
+#: js/messages.php:133
msgid "Resume monitor"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:134
msgid "Pause monitor"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:136
msgid "general_log and slow_query_log are enabled."
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:137
msgid "general_log is enabled."
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:138
msgid "slow_query_log is enabled."
msgstr ""
-#: js/messages.php:132
+#: js/messages.php:139
msgid "slow_query_log and general_log are disabled."
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:140
msgid "log_output is not set to TABLE."
msgstr ""
-#: js/messages.php:134
+#: js/messages.php:141
msgid "log_output is set to TABLE."
msgstr ""
-#: js/messages.php:135
+#: js/messages.php:142
#, php-format
msgid ""
"slow_query_log is enabled, but the server logs only queries that take longer "
@@ -1278,368 +1310,368 @@ msgid ""
"depending on your system."
msgstr ""
-#: js/messages.php:136
+#: js/messages.php:143
#, php-format
msgid "long_query_time is set to %d second(s)."
msgstr ""
-#: js/messages.php:137
+#: js/messages.php:144
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
#. l10n: %s is FILE or TABLE
-#: js/messages.php:139
+#: js/messages.php:146
#, 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:141
+#: js/messages.php:148
#, fuzzy, php-format
#| msgid "Enabled"
msgid "Enable %s"
msgstr "已啓用"
#. l10n: Disable in this context means setting a status variable to OFF
-#: js/messages.php:143
+#: js/messages.php:150
#, fuzzy, php-format
#| msgid "Disabled"
msgid "Disable %s"
msgstr "已關閉"
#. l10n: %d seconds
-#: js/messages.php:145
+#: js/messages.php:152
#, php-format
msgid "Set long_query_time to %ds"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:153
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:154
#, fuzzy
#| msgid "Manage your settings"
msgid "Change settings"
msgstr "管理我的設定"
-#: js/messages.php:148
+#: js/messages.php:155
#, fuzzy
#| msgid "More settings"
msgid "Current settings"
msgstr "更多設定"
-#: js/messages.php:150 server_status.php:1468
+#: js/messages.php:157 server_status.php:1510
#, fuzzy
#| msgid "Report title:"
msgid "Chart Title"
msgstr "報告標題:"
#. l10n: As in differential values
-#: js/messages.php:152
+#: js/messages.php:159
#, fuzzy
#| msgid "Difference"
msgid "Differential"
msgstr "差異"
-#: js/messages.php:153
+#: js/messages.php:160
#, php-format
msgid "Divided by %s:"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:162
msgid "From slow log"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:163
msgid "From general log"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:164
msgid "Analysing & loading logs. This may take a while."
msgstr ""
-#: js/messages.php:158
+#: js/messages.php:165
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:159
+#: js/messages.php:166
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:160
+#: js/messages.php:167
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-#: js/messages.php:162
+#: js/messages.php:169
#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
msgstr "轉到資料庫"
-#: js/messages.php:163
+#: js/messages.php:170
msgid "Log analysed, but no data found in this time span."
msgstr ""
#. l10n: A collection of available filters
-#: js/messages.php:166
+#: js/messages.php:173
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "過濾"
#. l10n: Filter as in "Start Filtering"
-#: js/messages.php:168
+#: js/messages.php:175
msgid "Filter"
msgstr "過濾"
-#: js/messages.php:169
+#: js/messages.php:176
msgid "Filter queries by word/regexp:"
msgstr ""
-#: js/messages.php:170
+#: js/messages.php:177
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
-#: js/messages.php:171
+#: js/messages.php:178
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
msgstr "插入的行數"
-#: js/messages.php:172
+#: js/messages.php:179
#, fuzzy
#| msgid "Total"
msgid "Total:"
msgstr "總計"
-#: js/messages.php:174
+#: js/messages.php:181
#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
msgstr "載入中"
-#: js/messages.php:175
+#: js/messages.php:182
msgid "Monitor refresh failed"
msgstr ""
-#: js/messages.php:176
+#: js/messages.php:183
msgid ""
"While requesting new chart data the server returned an invalid response. "
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:184
#, fuzzy
#| msgid "Reload"
msgid "Reload page"
msgstr "重新載入"
-#: js/messages.php:179
+#: js/messages.php:186
msgid "Affected rows:"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:188
msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:189
msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-#: js/messages.php:183 libraries/config/messages.inc.php:170
+#: js/messages.php:190 libraries/config/messages.inc.php:170
#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69
-#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1432
+#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1474
#: setup/frames/menu.inc.php:20
msgid "Import"
msgstr "輸入"
-#: js/messages.php:185
+#: js/messages.php:192
#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
msgstr "更新查詢"
-#: js/messages.php:189
+#: js/messages.php:196
msgid "Advisor system"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:197
msgid "Possible performance issues"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:198
msgid "Issue"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:199
#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
msgstr "文件"
-#: js/messages.php:193
+#: js/messages.php:200
#, fuzzy
#| msgid "Details..."
msgid "Rule details"
msgstr "詳細..."
-#: js/messages.php:194
+#: js/messages.php:201
#, fuzzy
#| msgid "Authentication"
msgid "Justification"
msgstr "認證"
-#: js/messages.php:195
+#: js/messages.php:202
msgid "Used variable / formula"
msgstr ""
-#: js/messages.php:196
+#: js/messages.php:203
msgid "Test"
msgstr ""
-#: js/messages.php:201 libraries/tbl_properties.inc.php:763
+#: js/messages.php:208 libraries/tbl_properties.inc.php:763
#: pmd_general.php:388 pmd_general.php:425 pmd_general.php:545
#: pmd_general.php:593 pmd_general.php:669 pmd_general.php:723
#: pmd_general.php:786
msgid "Cancel"
msgstr "取消"
-#: js/messages.php:204
+#: js/messages.php:211
msgid "Loading"
msgstr "載入中"
-#: js/messages.php:205
+#: js/messages.php:212
msgid "Processing Request"
msgstr "要求處理中"
-#: js/messages.php:206 libraries/import/ods.php:80
+#: js/messages.php:213 libraries/import/ods.php:80
#: libraries/rte/rte_export.lib.php:39
msgid "Error in Processing Request"
msgstr "要求處理得程序中有錯誤"
-#: js/messages.php:207
+#: js/messages.php:214
msgid "Dropping Column"
msgstr "刪除欄位"
-#: js/messages.php:208
+#: js/messages.php:215
msgid "Adding Primary Key"
msgstr "正在新增主鍵"
-#: js/messages.php:209 libraries/relation.lib.php:76 pmd_general.php:386
+#: js/messages.php:216 libraries/relation.lib.php:76 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "確定"
-#: js/messages.php:212
+#: js/messages.php:219
msgid "Renaming Databases"
msgstr "更改資料庫名稱中"
-#: js/messages.php:213
+#: js/messages.php:220
msgid "Reload Database"
msgstr "重新載入資料庫"
-#: js/messages.php:214
+#: js/messages.php:221
msgid "Copying Database"
msgstr "複製資料庫中"
-#: js/messages.php:215
+#: js/messages.php:222
msgid "Changing Charset"
msgstr "更改文字編碼"
-#: js/messages.php:216
+#: js/messages.php:223
msgid "Table must have at least one column"
msgstr "資料表最少需要有一個欄位"
-#: js/messages.php:217
+#: js/messages.php:224
msgid "Create Table"
msgstr "建立資料表"
-#: js/messages.php:222
+#: js/messages.php:229
msgid "Insert Table"
msgstr "插入資料表"
-#: js/messages.php:223
+#: js/messages.php:230
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "新增索引"
-#: js/messages.php:224
+#: js/messages.php:231
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "顯示網格"
-#: js/messages.php:227
+#: js/messages.php:234
msgid "Searching"
msgstr "搜索中"
-#: js/messages.php:228
+#: js/messages.php:235
msgid "Hide search results"
msgstr "隱藏搜尋結果"
-#: js/messages.php:229
+#: js/messages.php:236
msgid "Show search results"
msgstr "顯示搜尋結果"
-#: js/messages.php:230
+#: js/messages.php:237
msgid "Browsing"
msgstr "瀏覽"
-#: js/messages.php:231
+#: js/messages.php:238
msgid "Deleting"
msgstr "刪除"
-#: js/messages.php:234
+#: js/messages.php:241
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
-#: js/messages.php:237
+#: js/messages.php:244
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表."
-#: js/messages.php:240
+#: js/messages.php:247
msgid "Hide query box"
msgstr "隱藏查詢框"
-#: js/messages.php:241
+#: js/messages.php:248
msgid "Show query box"
msgstr "顯示查詢框"
-#: js/messages.php:243 tbl_row_action.php:28
+#: js/messages.php:250 tbl_row_action.php:28
msgid "No rows selected"
msgstr "沒有選中任何行"
-#: js/messages.php:244 libraries/common.lib.php:2531
+#: js/messages.php:251 libraries/common.lib.php:2531
#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94
#: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569
msgid "Change"
msgstr "修改"
-#: js/messages.php:245
+#: js/messages.php:252
#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
msgstr "最長執行時間"
-#: js/messages.php:248 libraries/config/FormDisplay.tpl.php:323
+#: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323
#: libraries/schema/User_Schema.class.php:313
#: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:228 tbl_change.php:979
@@ -1647,102 +1679,102 @@ msgstr "最長執行時間"
msgid "Save"
msgstr "儲存"
-#: js/messages.php:251
+#: js/messages.php:258
msgid "Hide search criteria"
msgstr "隱藏搜尋條件"
-#: js/messages.php:252
+#: js/messages.php:259
msgid "Show search criteria"
msgstr "顯示搜尋條件"
-#: js/messages.php:255 tbl_change.php:307 tbl_indexes.php:211
+#: js/messages.php:262 tbl_change.php:307 tbl_indexes.php:211
#: tbl_indexes.php:238
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:258
+#: js/messages.php:265
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "新增欄位"
-#: js/messages.php:261
+#: js/messages.php:268
msgid "Select referenced key"
msgstr "選擇外部鍵"
-#: js/messages.php:262
+#: js/messages.php:269
msgid "Select Foreign Key"
msgstr "選擇外部鍵"
-#: js/messages.php:263
+#: js/messages.php:270
msgid "Please select the primary key or a unique key"
msgstr "請選擇主鍵或唯一鍵"
-#: js/messages.php:264 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:271 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "選擇要顯示的欄位"
-#: js/messages.php:265
+#: js/messages.php:272
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:268
+#: js/messages.php:275
msgid "Add an option for column "
msgstr "新增選項給欄位 "
-#: js/messages.php:271
+#: js/messages.php:278
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:272
+#: js/messages.php:279
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:273
+#: js/messages.php:280
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:274
+#: js/messages.php:281
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "點擊選取"
-#: js/messages.php:275
+#: js/messages.php:282
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:276
+#: js/messages.php:283
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:278
+#: js/messages.php:285
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:281
+#: js/messages.php:288
msgid "Generate password"
msgstr "產生密碼"
-#: js/messages.php:282 libraries/replication_gui.lib.php:369
+#: js/messages.php:289 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "產生"
-#: js/messages.php:283
+#: js/messages.php:290
msgid "Change Password"
msgstr "修改密碼"
-#: js/messages.php:286 tbl_structure.php:464
+#: js/messages.php:293 tbl_structure.php:464
msgid "More"
msgstr "更多"
-#: js/messages.php:289 setup/lib/index.lib.php:173
+#: js/messages.php:296 setup/lib/index.lib.php:173
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1750,21 +1782,21 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:291
+#: js/messages.php:298
msgid ", latest stable version:"
msgstr ",最新穩定版本: "
-#: js/messages.php:292
+#: js/messages.php:299
msgid "up to date"
msgstr "最新"
#. l10n: Display text for calendar close link
-#: js/messages.php:311
+#: js/messages.php:318
msgid "Done"
msgstr "完成"
# 這應該是使用於選擇日期的月曆
-#: js/messages.php:315
+#: js/messages.php:322
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
@@ -1772,7 +1804,7 @@ msgid "Prev"
msgstr "上個月"
# 這應該使用於選擇日期的小月曆
-#: js/messages.php:320
+#: js/messages.php:327
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -1780,149 +1812,149 @@ msgid "Next"
msgstr "下個月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:323
+#: js/messages.php:330
msgid "Today"
msgstr "今天"
-#: js/messages.php:326
+#: js/messages.php:333
msgid "January"
msgstr "一月"
-#: js/messages.php:327
+#: js/messages.php:334
msgid "February"
msgstr "二月"
-#: js/messages.php:328
+#: js/messages.php:335
msgid "March"
msgstr "三月"
-#: js/messages.php:329
+#: js/messages.php:336
msgid "April"
msgstr "四月"
-#: js/messages.php:330
+#: js/messages.php:337
msgid "May"
msgstr "五月"
-#: js/messages.php:331
+#: js/messages.php:338
msgid "June"
msgstr "六月"
-#: js/messages.php:332
+#: js/messages.php:339
msgid "July"
msgstr "七月"
-#: js/messages.php:333
+#: js/messages.php:340
msgid "August"
msgstr "八月"
-#: js/messages.php:334
+#: js/messages.php:341
msgid "September"
msgstr "九月"
-#: js/messages.php:335
+#: js/messages.php:342
msgid "October"
msgstr "十月"
-#: js/messages.php:336
+#: js/messages.php:343
msgid "November"
msgstr "十一月"
-#: js/messages.php:337
+#: js/messages.php:344
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:341 libraries/common.lib.php:1503
+#: js/messages.php:348 libraries/common.lib.php:1503
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:343 libraries/common.lib.php:1505
+#: js/messages.php:350 libraries/common.lib.php:1505
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:345 libraries/common.lib.php:1507
+#: js/messages.php:352 libraries/common.lib.php:1507
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:347 libraries/common.lib.php:1509
+#: js/messages.php:354 libraries/common.lib.php:1509
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:349 libraries/common.lib.php:1511
+#: js/messages.php:356 libraries/common.lib.php:1511
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:351 libraries/common.lib.php:1513
+#: js/messages.php:358 libraries/common.lib.php:1513
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:353 libraries/common.lib.php:1515
+#: js/messages.php:360 libraries/common.lib.php:1515
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:355 libraries/common.lib.php:1517
+#: js/messages.php:362 libraries/common.lib.php:1517
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:357 libraries/common.lib.php:1519
+#: js/messages.php:364 libraries/common.lib.php:1519
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:359 libraries/common.lib.php:1521
+#: js/messages.php:366 libraries/common.lib.php:1521
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:361 libraries/common.lib.php:1523
+#: js/messages.php:368 libraries/common.lib.php:1523
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:363 libraries/common.lib.php:1525
+#: js/messages.php:370 libraries/common.lib.php:1525
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:366
+#: js/messages.php:373
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:367
+#: js/messages.php:374
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:368
+#: js/messages.php:375
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:369
+#: js/messages.php:376
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:370
+#: js/messages.php:377
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:371
+#: js/messages.php:378
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:372
+#: js/messages.php:379
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:376
+#: js/messages.php:383
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -1930,84 +1962,84 @@ msgid "Sun"
msgstr "週日"
#. l10n: Short week day name
-#: js/messages.php:378 libraries/common.lib.php:1530
+#: js/messages.php:385 libraries/common.lib.php:1530
msgid "Mon"
msgstr "週一"
#. l10n: Short week day name
-#: js/messages.php:380 libraries/common.lib.php:1532
+#: js/messages.php:387 libraries/common.lib.php:1532
msgid "Tue"
msgstr "週二"
#. l10n: Short week day name
-#: js/messages.php:382 libraries/common.lib.php:1534
+#: js/messages.php:389 libraries/common.lib.php:1534
msgid "Wed"
msgstr "週三"
#. l10n: Short week day name
-#: js/messages.php:384 libraries/common.lib.php:1536
+#: js/messages.php:391 libraries/common.lib.php:1536
msgid "Thu"
msgstr "週四"
#. l10n: Short week day name
-#: js/messages.php:386 libraries/common.lib.php:1538
+#: js/messages.php:393 libraries/common.lib.php:1538
msgid "Fri"
msgstr "週五"
#. l10n: Short week day name
-#: js/messages.php:388 libraries/common.lib.php:1540
+#: js/messages.php:395 libraries/common.lib.php:1540
msgid "Sat"
msgstr "週六"
#. l10n: Minimal week day name
-#: js/messages.php:392
+#: js/messages.php:399
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:394
+#: js/messages.php:401
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:396
+#: js/messages.php:403
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:398
+#: js/messages.php:405
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:400
+#: js/messages.php:407
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:402
+#: js/messages.php:409
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:404
+#: js/messages.php:411
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:406
+#: js/messages.php:413
msgid "Wk"
msgstr "周"
-#: js/messages.php:408
+#: js/messages.php:415
msgid "Hour"
msgstr "時"
-#: js/messages.php:409
+#: js/messages.php:416
msgid "Minute"
msgstr "分"
-#: js/messages.php:410
+#: js/messages.php:417
msgid "Second"
msgstr "秒"
@@ -2258,8 +2290,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:100
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案"
@@ -2398,7 +2430,7 @@ msgstr "已共享"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:49
-#: server_status.php:500
+#: server_status.php:545
msgid "Tables"
msgstr "資料表"
@@ -2475,7 +2507,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案."
#: libraries/common.inc.php:655 libraries/config/messages.inc.php:500
-#: libraries/header.inc.php:136 main.php:161 server_status.php:644
+#: libraries/header.inc.php:136 main.php:161 server_status.php:686
#: server_synchronize.php:1120
msgid "Server"
msgstr "伺服器"
@@ -2524,7 +2556,7 @@ msgid "Documentation"
msgstr "文件"
#: libraries/common.lib.php:559 libraries/header_printview.inc.php:60
-#: server_status.php:487 server_status.php:1070
+#: server_status.php:532 server_status.php:1112
msgid "SQL query"
msgstr "SQL 查詢"
@@ -2562,7 +2594,7 @@ msgid "Create PHP Code"
msgstr "建立 PHP 程式碼"
#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:478
-#: server_status.php:655 server_status.php:677 server_status.php:696
+#: server_status.php:697 server_status.php:719 server_status.php:738
msgid "Refresh"
msgstr "重新整理"
@@ -2583,7 +2615,7 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "行間"
-#: libraries/common.lib.php:1278 sql.php:833
+#: libraries/common.lib.php:1278 sql.php:831
msgid "Profiling"
msgstr "概要"
@@ -2693,7 +2725,7 @@ msgstr "點擊選取"
#: libraries/config/user_preferences.forms.php:229
#: libraries/config/user_preferences.forms.php:255
#: libraries/db_links.inc.php:48 libraries/export/latex.php:338
-#: libraries/import.lib.php:1102 libraries/tbl_links.inc.php:61
+#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61
#: libraries/tbl_properties.inc.php:608 pmd_general.php:151
#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253
msgid "Structure"
@@ -5217,8 +5249,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下"
"列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s"
@@ -5419,7 +5451,7 @@ msgstr "主鍵排序"
#: libraries/export/pdf.php:29 libraries/export/php_array.php:29
#: libraries/export/sql.php:88 libraries/export/texytext.php:31
#: libraries/export/xml.php:27 libraries/export/yaml.php:30
-#: libraries/import.lib.php:1080 libraries/import.lib.php:1102
+#: libraries/import.lib.php:1078 libraries/import.lib.php:1099
#: libraries/import/csv.php:33 libraries/import/docsql.php:35
#: libraries/import/ldi.php:49 libraries/import/ods.php:32
#: libraries/import/sql.php:20 libraries/import/xml.php:25
@@ -5483,7 +5515,7 @@ msgid "The row has been deleted"
msgstr "已刪除該行"
#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342
-#: server_status.php:1098
+#: server_status.php:1140
msgid "Kill"
msgstr "中止"
@@ -5499,7 +5531,7 @@ msgstr "顯示行"
msgid "total"
msgstr "總計"
-#: libraries/display_tbl.lib.php:2252 sql.php:697
+#: libraries/display_tbl.lib.php:2252 sql.php:696
#, php-format
msgid "Query took %01.4f sec"
msgstr "查詢花費 %01.4f 秒"
@@ -5568,7 +5600,7 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小"
msgid "Buffer Pool"
msgstr "快取池"
-#: libraries/engines/innodb.lib.php:131 server_status.php:547
+#: libraries/engines/innodb.lib.php:131 server_status.php:592
msgid "InnoDB Status"
msgstr "InnoDB 狀態"
@@ -5935,8 +5967,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s"
#: libraries/engines/pbxt.lib.php:129
@@ -6029,28 +6061,28 @@ msgid "Display MIME types"
msgstr "顯示 MIME 類型"
#: libraries/export/latex.php:129 libraries/export/sql.php:469
-#: libraries/export/xml.php:125 libraries/header_printview.inc.php:56
+#: libraries/export/xml.php:127 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
#: libraries/replication_gui.lib.php:335 server_privileges.php:800
#: server_privileges.php:803 server_privileges.php:859
#: server_privileges.php:1694 server_privileges.php:2237
-#: server_status.php:1064
+#: server_status.php:1106
msgid "Host"
msgstr "主機"
#: libraries/export/latex.php:134 libraries/export/sql.php:474
-#: libraries/export/xml.php:130 libraries/header_printview.inc.php:58
+#: libraries/export/xml.php:132 libraries/header_printview.inc.php:58
msgid "Generation Time"
msgstr "產生日期"
#: libraries/export/latex.php:135 libraries/export/sql.php:476
-#: libraries/export/xml.php:131 main.php:162
+#: libraries/export/xml.php:133 main.php:162
msgid "Server version"
msgstr "伺服器版本"
#: libraries/export/latex.php:136 libraries/export/sql.php:477
-#: libraries/export/xml.php:132
+#: libraries/export/xml.php:134
msgid "PHP Version"
msgstr "PHP 版本"
@@ -6256,53 +6288,53 @@ msgid "Generated by"
msgstr "產生者"
#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237
-#: sql.php:693 tbl_change.php:183 tbl_get_field.php:34
+#: sql.php:692 tbl_change.php:183 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查詢結果爲空 (即零行)"
-#: libraries/import.lib.php:1076
+#: libraries/import.lib.php:1074
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "下列結構被建立或修改。您可以:"
-#: libraries/import.lib.php:1077
+#: libraries/import.lib.php:1075
#, fuzzy
#| msgid "View a structure`s contents by clicking on its name"
msgid "View a structure's contents by clicking on its name"
msgstr "點選它的名字查看內容"
-#: libraries/import.lib.php:1078
+#: libraries/import.lib.php:1076
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "點選相應的“選項”連結修改它的設定"
-#: libraries/import.lib.php:1079
+#: libraries/import.lib.php:1077
#, fuzzy
#| msgid "Edit its structure by following the \"Structure\" link"
msgid "Edit structure by following the \"Structure\" link"
msgstr "點選“結構”連結編輯它的結構"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1080
msgid "Go to database"
msgstr "轉到資料庫"
-#: libraries/import.lib.php:1085 libraries/import.lib.php:1109
+#: libraries/import.lib.php:1083 libraries/import.lib.php:1106
#, fuzzy, php-format
#| msgid "Missing data for %s"
msgid "Edit settings for %s"
msgstr "在 %s 中丟失資料"
-#: libraries/import.lib.php:1104
+#: libraries/import.lib.php:1101
msgid "Go to table"
msgstr "轉到資料表"
-#: libraries/import.lib.php:1107
+#: libraries/import.lib.php:1104
#, fuzzy, php-format
#| msgid "Structure only"
msgid "Structure of %s"
msgstr "僅結構"
-#: libraries/import.lib.php:1113
+#: libraries/import.lib.php:1110
msgid "Go to view"
msgstr "轉到 view"
@@ -6752,14 +6784,14 @@ msgid "Slave status"
msgstr "從伺服器狀態"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382
-#: server_status.php:1309 server_variables.php:108
+#: server_status.php:1351 server_variables.php:108
msgid "Variable"
msgstr "變數"
#: libraries/replication_gui.lib.php:119
#: libraries/rte/rte_routines.lib.php:1357 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1310 tbl_change.php:329 tbl_printview.php:334
+#: server_status.php:1352 tbl_change.php:329 tbl_printview.php:334
#: tbl_select.php:118 tbl_structure.php:828
msgid "Value"
msgstr "值"
@@ -6979,7 +7011,7 @@ msgid "Returns"
msgstr "返回類型"
#: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326
-#: server_status.php:1067 sql.php:838
+#: server_status.php:1109 sql.php:836
msgid "Time"
msgstr "時間"
@@ -7461,12 +7493,12 @@ msgid "Synchronize"
msgstr "同步"
#: libraries/server_links.inc.php:84 server_binlog.php:77
-#: server_status.php:493
+#: server_status.php:538
msgid "Binary log"
msgstr "二進制日誌"
#: libraries/server_links.inc.php:95 server_engines.php:123
-#: server_engines.php:127 server_status.php:545
+#: server_engines.php:127 server_status.php:590
msgid "Variables"
msgstr "變數"
@@ -7519,11 +7551,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:302 sql.php:911 sql.php:928
+#: libraries/sql_query_form.lib.php:302 sql.php:909 sql.php:926
msgid "Bookmark this SQL query"
msgstr "將此 SQL 查詢加爲書籤"
-#: libraries/sql_query_form.lib.php:309 sql.php:922
+#: libraries/sql_query_form.lib.php:309 sql.php:920
msgid "Let every user access this bookmark"
msgstr "讓所有使用者均可訪問此書籤"
@@ -7902,7 +7934,7 @@ msgstr "協定版本"
#: main.php:165 server_privileges.php:1539 server_privileges.php:1693
#: server_privileges.php:1817 server_privileges.php:2236
-#: server_status.php:1063
+#: server_status.php:1105
msgid "User"
msgstr "使用者"
@@ -8333,17 +8365,17 @@ msgstr "檔案不存在"
msgid "Select binary log to view"
msgstr "選擇要查看的二進制日誌"
-#: server_binlog.php:103 server_status.php:502
+#: server_binlog.php:103 server_status.php:547
msgid "Files"
msgstr "檔案"
-#: server_binlog.php:150 server_binlog.php:152 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:150 server_binlog.php:152 server_status.php:1115
+#: server_status.php:1117
msgid "Truncate Shown Queries"
msgstr "截斷顯示的查詢"
-#: server_binlog.php:158 server_binlog.php:160 server_status.php:1073
-#: server_status.php:1075
+#: server_binlog.php:158 server_binlog.php:160 server_status.php:1115
+#: server_status.php:1117
msgid "Show Full Queries"
msgstr "顯示完整查詢"
@@ -8724,8 +8756,8 @@ msgstr "刪除與使用者同名的資料庫"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表"
"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入"
@@ -8851,7 +8883,7 @@ msgstr "權限已成功重新讀取."
msgid "This server is configured as master in a replication process."
msgstr "此伺服器已被設定爲一個複製程序中的主伺服器"
-#: server_replication.php:182 server_status.php:522
+#: server_replication.php:182 server_status.php:567
msgid "Show master status"
msgstr "查看主伺服器狀態"
@@ -8992,137 +9024,137 @@ msgstr ""
"此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定"
"嗎?"
-#: server_status.php:367
+#: server_status.php:412
#, php-format
msgid "Thread %s was successfully killed."
msgstr "已中止程序 %s "
-#: server_status.php:369
+#: server_status.php:414
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉"
-#: server_status.php:490
+#: server_status.php:535
msgid "Handler"
msgstr "處理器"
-#: server_status.php:491
+#: server_status.php:536
msgid "Query cache"
msgstr "查詢快取"
-#: server_status.php:492
+#: server_status.php:537
msgid "Threads"
msgstr "程序"
-#: server_status.php:494
+#: server_status.php:539
msgid "Temporary data"
msgstr "臨時資料"
-#: server_status.php:495
+#: server_status.php:540
msgid "Delayed inserts"
msgstr "延遲插入"
-#: server_status.php:496
+#: server_status.php:541
msgid "Key cache"
msgstr "鍵快取"
-#: server_status.php:497
+#: server_status.php:542
msgid "Joins"
msgstr "多表查詢"
-#: server_status.php:499
+#: server_status.php:544
msgid "Sorting"
msgstr "排序"
-#: server_status.php:501
+#: server_status.php:546
msgid "Transaction coordinator"
msgstr "交易協調"
-#: server_status.php:512
+#: server_status.php:557
msgid "Flush (close) all tables"
msgstr "強制更新 (關閉) 所有表"
-#: server_status.php:514
+#: server_status.php:559
msgid "Show open tables"
msgstr "顯示開啟的表"
-#: server_status.php:519
+#: server_status.php:564
msgid "Show slave hosts"
msgstr "顯示從伺服器"
-#: server_status.php:525
+#: server_status.php:570
msgid "Show slave status"
msgstr "顯示從伺服器狀態"
-#: server_status.php:530
+#: server_status.php:575
msgid "Flush query cache"
msgstr "強制更新查詢快取"
-#: server_status.php:639
+#: server_status.php:681
msgid "Runtime Information"
msgstr "運行資訊"
-#: server_status.php:646
+#: server_status.php:688
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "查看從伺服器狀態"
-#: server_status.php:647
+#: server_status.php:689
msgid "Monitor"
msgstr ""
-#: server_status.php:648
+#: server_status.php:690
msgid "Advisor"
msgstr ""
-#: server_status.php:658 server_status.php:680
+#: server_status.php:700 server_status.php:722
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "重新整理"
-#: server_status.php:701
+#: server_status.php:743
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "保持原密碼"
-#: server_status.php:706
+#: server_status.php:748
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "顯示開啟的表"
-#: server_status.php:710
+#: server_status.php:752
msgid "Filter by category..."
msgstr ""
-#: server_status.php:723
+#: server_status.php:765
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "顯示開啟的表"
-#: server_status.php:727
+#: server_status.php:769
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "相關連結"
-#: server_status.php:758
+#: server_status.php:800
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "查詢方式"
-#: server_status.php:759
+#: server_status.php:801
#, fuzzy
msgid "Instructions"
msgstr "資料"
-#: server_status.php:764
+#: server_status.php:806
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables.
Do note however that this system "
@@ -9137,60 +9169,60 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:784
+#: server_status.php:826
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "自訂起始頁"
-#: server_status.php:790 server_status.php:825 server_status.php:943
-#: server_status.php:988
+#: server_status.php:832 server_status.php:867 server_status.php:985
+#: server_status.php:1030
msgid "per hour"
msgstr "每小時"
-#: server_status.php:794
+#: server_status.php:836
msgid "per minute"
msgstr "每分鐘"
-#: server_status.php:799
+#: server_status.php:841
msgid "per second"
msgstr "每秒"
-#: server_status.php:820 tbl_printview.php:333 tbl_structure.php:827
+#: server_status.php:862 tbl_printview.php:333 tbl_structure.php:827
msgid "Statements"
msgstr "說明"
#. l10n: # = Amount of queries
-#: server_status.php:823
+#: server_status.php:865
msgid "#"
msgstr ""
-#: server_status.php:891
+#: server_status.php:933
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:899
+#: server_status.php:941
#, 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:909
+#: server_status.php:951
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 伺服器正以主和從伺服器運行於複製程序中"
-#: server_status.php:911
+#: server_status.php:953
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 伺服器正以主伺服器運行於複製程序中"
-#: server_status.php:913
+#: server_status.php:955
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 伺服器正以從伺服器運行於複製程序中"
-#: server_status.php:916
+#: server_status.php:958
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9198,11 +9230,11 @@ msgstr ""
"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊"
""
-#: server_status.php:926
+#: server_status.php:968
msgid "Replication status"
msgstr "複製狀態"
-#: server_status.php:942
+#: server_status.php:984
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9210,47 +9242,47 @@ msgstr ""
"在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正"
"確"
-#: server_status.php:948
+#: server_status.php:990
msgid "Received"
msgstr "已接收"
-#: server_status.php:958
+#: server_status.php:1000
msgid "Sent"
msgstr "已發送"
-#: server_status.php:994
+#: server_status.php:1036
msgid "max. concurrent connections"
msgstr "最大同時連線數"
-#: server_status.php:1001
+#: server_status.php:1043
msgid "Failed attempts"
msgstr "已失敗"
-#: server_status.php:1015
+#: server_status.php:1057
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:1062
+#: server_status.php:1104
msgid "ID"
msgstr "ID"
-#: server_status.php:1066
+#: server_status.php:1108
msgid "Command"
msgstr "命令"
-#: server_status.php:1136
+#: server_status.php:1178
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1137
+#: server_status.php:1179
#, 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:1138
+#: server_status.php:1180
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 "
@@ -9259,16 +9291,16 @@ msgstr ""
"因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存"
"的數量"
-#: server_status.php:1139
+#: server_status.php:1181
msgid "The number of transactions that used the temporary binary log cache."
msgstr "交易所用的臨時二進制日誌快取的數量"
-#: server_status.php:1140
+#: server_status.php:1182
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1141
+#: server_status.php:1183
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 "
@@ -9278,46 +9310,46 @@ msgstr ""
"伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables "
"很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟"
-#: server_status.php:1142
+#: server_status.php:1184
msgid "How many temporary files mysqld has created."
msgstr "mysqld 已建立的臨時檔案的數量"
-#: server_status.php:1143
+#: server_status.php:1185
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量"
-#: server_status.php:1144
+#: server_status.php:1186
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
"發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) "
-#: server_status.php:1145
+#: server_status.php:1187
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:1146
+#: server_status.php:1188
msgid "The number of INSERT DELAYED rows written."
msgstr "延遲插入已寫入的行數"
-#: server_status.php:1147
+#: server_status.php:1189
msgid "The number of executed FLUSH statements."
msgstr "已執行的強制更新 (FLUSH) 指令數"
-#: server_status.php:1148
+#: server_status.php:1190
msgid "The number of internal COMMIT statements."
msgstr "已執行的內部送出 (COMMIT) 指令數"
-#: server_status.php:1149
+#: server_status.php:1191
msgid "The number of times a row was deleted from a table."
msgstr "從資料表中刪除行的次數"
-#: server_status.php:1150
+#: server_status.php:1192
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 "
@@ -9326,7 +9358,7 @@ msgstr ""
"如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發"
"現”Handler_discovery 表明瞭一個資料表被發現的次數"
-#: server_status.php:1151
+#: server_status.php:1193
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, "
@@ -9335,14 +9367,14 @@ msgstr ""
"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃"
"描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo "
-#: server_status.php:1152
+#: server_status.php:1194
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:1153
+#: server_status.php:1195
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 "
@@ -9351,7 +9383,7 @@ msgstr ""
"根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或"
"進行完整表掃描,該值將會不斷增長"
-#: server_status.php:1154
+#: server_status.php:1196
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9359,7 +9391,7 @@ msgstr ""
"根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... "
"DESC 的查詢"
-#: server_status.php:1155
+#: server_status.php:1197
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 "
@@ -9369,7 +9401,7 @@ msgstr ""
"根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能"
"有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢"
-#: server_status.php:1156
+#: server_status.php:1198
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 "
@@ -9379,35 +9411,35 @@ msgstr ""
"從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味"
"着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位"
-#: server_status.php:1157
+#: server_status.php:1199
msgid "The number of internal ROLLBACK statements."
msgstr "內部回滾 (ROLLBACK) 指令數"
-#: server_status.php:1158
+#: server_status.php:1200
msgid "The number of requests to update a row in a table."
msgstr "資料表中更新行的請求數"
-#: server_status.php:1159
+#: server_status.php:1201
msgid "The number of requests to insert a row in a table."
msgstr "資料表中插入行的請求數"
-#: server_status.php:1160
+#: server_status.php:1202
msgid "The number of pages containing data (dirty or clean)."
msgstr "非空頁數 (含髒頁) "
-#: server_status.php:1161
+#: server_status.php:1203
msgid "The number of pages currently dirty."
msgstr "目前髒頁數"
-#: server_status.php:1162
+#: server_status.php:1204
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "請求更新的快取池頁數"
-#: server_status.php:1163
+#: server_status.php:1205
msgid "The number of free pages."
msgstr "空閒頁數"
-#: server_status.php:1164
+#: server_status.php:1206
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 "
@@ -9416,7 +9448,7 @@ msgstr ""
"InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能"
"被重新整理或刪除的"
-#: server_status.php:1165
+#: server_status.php:1207
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 "
@@ -9427,11 +9459,11 @@ msgstr ""
"公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data "
-#: server_status.php:1166
+#: server_status.php:1208
msgid "Total size of buffer pool, in pages."
msgstr "快取池總大小 (單位:頁)"
-#: server_status.php:1167
+#: server_status.php:1209
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."
@@ -9439,23 +9471,23 @@ msgstr ""
"InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時"
"發生"
-#: server_status.php:1168
+#: server_status.php:1210
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:1169
+#: server_status.php:1211
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB 完成的邏輯讀請求數"
-#: server_status.php:1170
+#: server_status.php:1212
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:1171
+#: server_status.php:1213
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 "
@@ -9467,85 +9499,85 @@ msgstr ""
"必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正"
"確,這個值應該會很小"
-#: server_status.php:1172
+#: server_status.php:1214
msgid "The number writes done to the InnoDB buffer pool."
msgstr "寫入 InnoDB 快取池的次數"
-#: server_status.php:1173
+#: server_status.php:1215
msgid "The number of fsync() operations so far."
msgstr "fsync() 總操作的次數"
-#: server_status.php:1174
+#: server_status.php:1216
msgid "The current number of pending fsync() operations."
msgstr "目前掛起 fsync() 操作的數量"
-#: server_status.php:1175
+#: server_status.php:1217
msgid "The current number of pending reads."
msgstr "目前掛起的讀操作數"
-#: server_status.php:1176
+#: server_status.php:1218
msgid "The current number of pending writes."
msgstr "目前掛起的寫操作數"
-#: server_status.php:1177
+#: server_status.php:1219
msgid "The amount of data read so far, in bytes."
msgstr "讀取的總資料量 (單位:字元)"
-#: server_status.php:1178
+#: server_status.php:1220
msgid "The total number of data reads."
msgstr "資料讀取總數"
-#: server_status.php:1179
+#: server_status.php:1221
msgid "The total number of data writes."
msgstr "資料寫入總數"
-#: server_status.php:1180
+#: server_status.php:1222
msgid "The amount of data written so far, in bytes."
msgstr "寫入的總資料量 (單位:字元)"
-#: server_status.php:1181
+#: server_status.php:1223
msgid "The number of pages that have been written for doublewrite operations."
msgstr "以雙寫入操作寫入的頁數"
-#: server_status.php:1182
+#: server_status.php:1224
msgid "The number of doublewrite operations that have been performed."
msgstr "已經執行的雙寫入次數"
-#: server_status.php:1183
+#: server_status.php:1225
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:1184
+#: server_status.php:1226
msgid "The number of log write requests."
msgstr "日誌寫入請求數"
-#: server_status.php:1185
+#: server_status.php:1227
msgid "The number of physical writes to the log file."
msgstr "日誌物理寫入次數"
-#: server_status.php:1186
+#: server_status.php:1228
msgid "The number of fsync() writes done to the log file."
msgstr "使用 fsync() 寫入日志檔案的次數"
-#: server_status.php:1187
+#: server_status.php:1229
msgid "The number of pending log file fsyncs."
msgstr "目前掛起的 fsync 日志檔案數"
-#: server_status.php:1188
+#: server_status.php:1230
msgid "Pending log file writes."
msgstr "目前掛起的日誌寫入數"
-#: server_status.php:1189
+#: server_status.php:1231
msgid "The number of bytes written to the log file."
msgstr "寫入日志檔案的字元數"
-#: server_status.php:1190
+#: server_status.php:1232
msgid "The number of pages created."
msgstr "建立的頁數"
-#: server_status.php:1191
+#: server_status.php:1233
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."
@@ -9553,75 +9585,75 @@ msgstr ""
"編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方"
"便地將這些值轉化爲字元數"
-#: server_status.php:1192
+#: server_status.php:1234
msgid "The number of pages read."
msgstr "讀取的頁數"
-#: server_status.php:1193
+#: server_status.php:1235
msgid "The number of pages written."
msgstr "寫入的頁數"
-#: server_status.php:1194
+#: server_status.php:1236
msgid "The number of row locks currently being waited for."
msgstr "正在等待行鎖的數量"
-#: server_status.php:1195
+#: server_status.php:1237
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "等待取得行鎖的平均時間 (單位:毫秒)"
-#: server_status.php:1196
+#: server_status.php:1238
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "等待取得行鎖的總時間 (單位:毫秒)"
-#: server_status.php:1197
+#: server_status.php:1239
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "等待取得行鎖的最大時間 (單位:毫秒)"
-#: server_status.php:1198
+#: server_status.php:1240
msgid "The number of times a row lock had to be waited for."
msgstr "等待行鎖的次數"
-#: server_status.php:1199
+#: server_status.php:1241
msgid "The number of rows deleted from InnoDB tables."
msgstr "從 InnoDB 資料表中刪除的行數"
-#: server_status.php:1200
+#: server_status.php:1242
msgid "The number of rows inserted in InnoDB tables."
msgstr "插入到 InnoDB 資料表中的行數"
-#: server_status.php:1201
+#: server_status.php:1243
msgid "The number of rows read from InnoDB tables."
msgstr "從 InnoDB 資料表中讀取的行數"
-#: server_status.php:1202
+#: server_status.php:1244
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB 中更新的行數"
-#: server_status.php:1203
+#: server_status.php:1245
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:1204
+#: server_status.php:1246
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:1205
+#: server_status.php:1247
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:1206
+#: server_status.php:1248
msgid "The number of requests to read a key block from the cache."
msgstr "從快取中讀取鍵塊的請求次數"
-#: server_status.php:1207
+#: server_status.php:1249
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 "
@@ -9630,15 +9662,15 @@ msgstr ""
"從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size "
"可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出"
-#: server_status.php:1208
+#: server_status.php:1250
msgid "The number of requests to write a key block to the cache."
msgstr "將一個鍵塊寫入快取的請求數"
-#: server_status.php:1209
+#: server_status.php:1251
msgid "The number of physical writes of a key block to disk."
msgstr "將鍵塊物理寫入到硬碟的次數"
-#: server_status.php:1210
+#: server_status.php:1252
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 "
@@ -9647,54 +9679,54 @@ msgstr ""
"最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進"
"行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯"
-#: server_status.php:1211
+#: server_status.php:1253
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1212
+#: server_status.php:1254
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "等待寫入延遲插入隊列的行數"
-#: server_status.php:1213
+#: server_status.php:1255
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:1214
+#: server_status.php:1256
msgid "The number of files that are open."
msgstr "開啟的檔案個數"
-#: server_status.php:1215
+#: server_status.php:1257
msgid "The number of streams that are open (used mainly for logging)."
msgstr "開啟的流個數 (主要用於日誌記錄)"
-#: server_status.php:1216
+#: server_status.php:1258
msgid "The number of tables that are open."
msgstr "開啟的資料表個數"
-#: server_status.php:1217
+#: server_status.php:1259
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:1218
+#: server_status.php:1260
msgid "The amount of free memory for query cache."
msgstr "查詢快取中空閒的記憶體總數"
-#: server_status.php:1219
+#: server_status.php:1261
msgid "The number of cache hits."
msgstr "快取命中數"
-#: server_status.php:1220
+#: server_status.php:1262
msgid "The number of queries added to the cache."
msgstr "加入到快取的查詢數"
-#: server_status.php:1221
+#: server_status.php:1263
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 "
@@ -9704,7 +9736,7 @@ msgstr ""
"爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除"
"哪個已快取的查詢。該資訊可幫助您調整查詢快取大小"
-#: server_status.php:1222
+#: server_status.php:1264
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9712,19 +9744,19 @@ msgstr ""
"未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的"
"查詢)"
-#: server_status.php:1223
+#: server_status.php:1265
msgid "The number of queries registered in the cache."
msgstr "在快取中註冊的查詢數"
-#: server_status.php:1224
+#: server_status.php:1266
msgid "The total number of blocks in the query cache."
msgstr "查詢快取中的總塊數"
-#: server_status.php:1225
+#: server_status.php:1267
msgid "The status of failsafe replication (not yet implemented)."
msgstr "失敗保護器的狀態 (尚未套用)"
-#: server_status.php:1226
+#: server_status.php:1268
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."
@@ -9732,11 +9764,11 @@ msgstr ""
"沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當"
"的索引"
-#: server_status.php:1227
+#: server_status.php:1269
msgid "The number of joins that used a range search on a reference table."
msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量"
-#: server_status.php:1228
+#: server_status.php:1270
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.)"
@@ -9744,7 +9776,7 @@ msgstr ""
"沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細"
"檢查是否已經爲表建立了適當的索引。)"
-#: server_status.php:1229
+#: server_status.php:1271
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9752,36 +9784,36 @@ msgstr ""
"在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影"
"響。)"
-#: server_status.php:1230
+#: server_status.php:1272
msgid "The number of joins that did a full scan of the first table."
msgstr "在第一個資料表上進行了完整表掃描的多表查詢數"
-#: server_status.php:1231
+#: server_status.php:1273
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "目前由從 SQL 程序開啟的臨時表的數量"
-#: server_status.php:1232
+#: server_status.php:1274
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr "從 SQL 程序總共重試交易複製數"
-#: server_status.php:1233
+#: server_status.php:1275
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器"
-#: server_status.php:1234
+#: server_status.php:1276
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量"
-#: server_status.php:1235
+#: server_status.php:1277
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "使用了比 long_query_time 更多時間的查詢數"
-#: server_status.php:1236
+#: server_status.php:1278
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 "
@@ -9790,23 +9822,23 @@ msgstr ""
"排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 "
"sort_buffer_size 的值"
-#: server_status.php:1237
+#: server_status.php:1279
msgid "The number of sorts that were done with ranges."
msgstr "局部範圍完成的排序次數"
-#: server_status.php:1238
+#: server_status.php:1280
msgid "The number of sorted rows."
msgstr "排序的行數"
-#: server_status.php:1239
+#: server_status.php:1281
msgid "The number of sorts that were done by scanning the table."
msgstr "掃描表完成的排序次數"
-#: server_status.php:1240
+#: server_status.php:1282
msgid "The number of times that a table lock was acquired immediately."
msgstr "立即需要鎖定表的次數"
-#: server_status.php:1241
+#: server_status.php:1283
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 "
@@ -9816,7 +9848,7 @@ msgstr ""
"無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題,"
"則應該首先檢查您的查詢指令,然後使用複製操作來分開表"
-#: server_status.php:1242
+#: server_status.php:1284
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 "
@@ -9825,11 +9857,11 @@ msgstr ""
"程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如"
"果該值是紅色的,則應該增加 thread_cache_size 的值"
-#: server_status.php:1243
+#: server_status.php:1285
msgid "The number of currently open connections."
msgstr "目前開啟的連線數"
-#: server_status.php:1244
+#: server_status.php:1286
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 "
@@ -9839,69 +9871,69 @@ msgstr ""
"目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 "
"thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)"
-#: server_status.php:1245
+#: server_status.php:1287
msgid "The number of threads that are not sleeping."
msgstr "非睡眠狀態的程序數量"
-#: server_status.php:1385
+#: server_status.php:1427
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "文字框行"
-#: server_status.php:1393
+#: server_status.php:1435
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1439
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1446
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "新增索引"
-#: server_status.php:1406
+#: server_status.php:1448
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1452
#, fuzzy
msgid "Refresh rate"
msgstr "重新整理"
-#: server_status.php:1415
+#: server_status.php:1457
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "文本框列"
-#: server_status.php:1431
+#: server_status.php:1473
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "錯誤管理:"
-#: server_status.php:1431
+#: server_status.php:1473
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:1432
+#: server_status.php:1474
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "還原預設值"
-#: server_status.php:1436
+#: server_status.php:1478
#, fuzzy
msgid "Monitor Instructions"
msgstr "資料"
-#: server_status.php:1437
+#: server_status.php:1479
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 "
@@ -9910,7 +9942,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1442
+#: server_status.php:1484
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -9918,7 +9950,7 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1454
+#: server_status.php:1496
msgid ""
"Using the monitor: Ok, you are good to go! Once you click 'Start "
"monitor' your browser will refresh all displayed charts in a regular "
@@ -9930,7 +9962,7 @@ msgid ""
"any occuring SELECT statements to further analyze them.